summaryrefslogtreecommitdiff
path: root/tests/contenttypes_tests/test_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/contenttypes_tests/test_models.py')
-rw-r--r--tests/contenttypes_tests/test_models.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/contenttypes_tests/test_models.py b/tests/contenttypes_tests/test_models.py
index bb0f8c890f..4c16e0b4aa 100644
--- a/tests/contenttypes_tests/test_models.py
+++ b/tests/contenttypes_tests/test_models.py
@@ -3,7 +3,6 @@ from django.contrib.contenttypes.views import shortcut
from django.contrib.sites.shortcuts import get_current_site
from django.http import Http404, HttpRequest
from django.test import TestCase, override_settings
-from django.utils import six
from .models import (
ConcreteModel, FooWithBrokenAbsoluteUrl, FooWithoutUrl, FooWithUrl,
@@ -242,7 +241,7 @@ class ContentTypesTests(TestCase):
app_label='contenttypes',
model='OldModel',
)
- self.assertEqual(six.text_type(ct), 'OldModel')
+ self.assertEqual(str(ct), 'OldModel')
self.assertIsNone(ct.model_class())
# Make sure stale ContentTypes can be fetched like any other object.