Commit 1fd66fe8 by Markus Törnqvist

Drop u'', it was used inconsistently and breaks for nothing with Python 3.2

parent 48c1b223
......@@ -1336,8 +1336,8 @@ class FieldLabelTest(TestCase):
serializer = self.serializer_class()
text_field = serializer.fields['text']
self.assertEquals(u'Text comes here', text_field.label)
self.assertEquals(u'Text description.', text_field.help_text)
self.assertEquals('Text comes here', text_field.label)
self.assertEquals('Text description.', text_field.help_text)
def test_field_ctor(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