Commit 97ebd68f by José Padilla

Remove unicode strings

parent c9d4497d
...@@ -118,9 +118,9 @@ class TestViewNamesAndDescriptions(TestCase): ...@@ -118,9 +118,9 @@ class TestViewNamesAndDescriptions(TestCase):
return self.s return self.s
class MockView(APIView): 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): def test_markdown(self):
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment