diff --git a/awx/api/tests/decorator_paginated.py b/awx/api/tests/decorator_paginated.py index e2d3ae27c4..02d1ec1850 100644 --- a/awx/api/tests/decorator_paginated.py +++ b/awx/api/tests/decorator_paginated.py @@ -24,7 +24,7 @@ class PaginatedDecoratorTests(TestCase): class View(APIView): permission_classes = (AllowAny,) @paginated - def get(self, request, limit, offset): + def get(self, request, limit, ordering, offset): return ['a', 'b', 'c', 'd', 'e'], 26 self.view = View.as_view()