summaryrefslogtreecommitdiff
path: root/tests/pagination
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2017-01-07 12:11:46 +0100
committerClaude Paroz <claude@2xlibre.net>2017-01-18 21:33:28 +0100
commit2b281cc35ed9d997614ca3c416928d7fabfef1ad (patch)
treed3e73cf44b15139aa9f1f53e398942ba64f5e190 /tests/pagination
parent7b2f2e74adb36a4334e83130f6abc2f79d395235 (diff)
downloaddjango-2b281cc35ed9d997614ca3c416928d7fabfef1ad.tar.gz
Refs #23919 -- Removed most of remaining six usage
Thanks Tim Graham for the review.
Diffstat (limited to 'tests/pagination')
-rw-r--r--tests/pagination/tests.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/pagination/tests.py b/tests/pagination/tests.py
index cc3a0efbc2..2e2e2d37db 100644
--- a/tests/pagination/tests.py
+++ b/tests/pagination/tests.py
@@ -6,7 +6,6 @@ from django.core.paginator import (
UnorderedObjectListWarning,
)
from django.test import TestCase
-from django.utils import six
from .custom import ValidAdjacentNumsPaginator
from .models import Article
@@ -240,7 +239,7 @@ class PaginationTests(unittest.TestCase):
"""
Paginator.page_range should be an iterator.
"""
- self.assertIsInstance(Paginator([1, 2, 3], 2).page_range, type(six.moves.range(0)))
+ self.assertIsInstance(Paginator([1, 2, 3], 2).page_range, type(range(0)))
class ModelPaginationTests(TestCase):