mirror of
https://github.com/django/django.git
synced 2025-10-28 08:06:09 +00:00
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from __future__ import absolute_import
|
||||
from __future__ import absolute_import, unicode_literals
|
||||
|
||||
import datetime
|
||||
from operator import attrgetter
|
||||
@@ -38,7 +38,7 @@ class ModelTests(TestCase):
|
||||
|
||||
# Empty strings should be returned as Unicode
|
||||
a = Article.objects.get(pk=a.pk)
|
||||
self.assertEqual(a.misc_data, u'')
|
||||
self.assertEqual(a.misc_data, '')
|
||||
self.assertIs(type(a.misc_data), unicode)
|
||||
|
||||
def test_long_textfield(self):
|
||||
|
||||
Reference in New Issue
Block a user