From ba44491bf08219d37e2d7a4da736bd26959fd579 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Wed, 16 Jul 2014 13:34:37 -0400 Subject: [PATCH] Fix up pagination tests by updating return assumptions from decorated function --- awx/api/tests/decorator_paginated.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/tests/decorator_paginated.py b/awx/api/tests/decorator_paginated.py index 02d1ec1850..0e63327fa0 100644 --- a/awx/api/tests/decorator_paginated.py +++ b/awx/api/tests/decorator_paginated.py @@ -25,7 +25,7 @@ class PaginatedDecoratorTests(TestCase): permission_classes = (AllowAny,) @paginated def get(self, request, limit, ordering, offset): - return ['a', 'b', 'c', 'd', 'e'], 26 + return ['a', 'b', 'c', 'd', 'e'], 26, None self.view = View.as_view() def test_implicit_first_page(self):