diff options
| -rw-r--r-- | tests/test_description.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_description.py b/tests/test_description.py index 1208ce54..0675d209 100644 --- a/tests/test_description.py +++ b/tests/test_description.py @@ -118,9 +118,9 @@ class TestViewNamesAndDescriptions(TestCase):                  return self.s          class MockView(APIView): -            __doc__ = MockLazyStr(u"a gettext string") +            __doc__ = MockLazyStr("a gettext string") -        self.assertEqual(MockView().get_view_description(), u'a gettext string') +        self.assertEqual(MockView().get_view_description(), 'a gettext string')      def test_markdown(self):          """  | 
