diff options
Diffstat (limited to 'tests/datatypes')
| -rw-r--r-- | tests/datatypes/tests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/datatypes/tests.py b/tests/datatypes/tests.py index b6899c7609..5c3dffa457 100644 --- a/tests/datatypes/tests.py +++ b/tests/datatypes/tests.py @@ -1,7 +1,6 @@ import datetime from django.test import TestCase, skipIfDBFeature -from django.utils import six from django.utils.timezone import utc from .models import Donut, RumBaba @@ -75,7 +74,7 @@ class DataTypesTestCase(TestCase): database should be unicode.""" d = Donut.objects.create(name='Jelly Donut', review='Outstanding') newd = Donut.objects.get(id=d.id) - self.assertIsInstance(newd.review, six.text_type) + self.assertIsInstance(newd.review, str) @skipIfDBFeature('supports_timezones') def test_error_on_timezone(self): |
