fix test response

This commit is contained in:
Pavel Savchenko 2012-11-30 01:37:21 +02:00
parent e311b763e1
commit 1c1bd3fc5d

View File

@ -588,11 +588,11 @@ class RelatedTraversalTest(TestCase):
serializer = BlogPostSerializer(instance=post)
expected = {
'title': 'Test blog post',
'title': u'Test blog post',
'comments': [{
'text': 'I hate this blog post',
'text': u'I love this blog post',
'post_owner': {
"name": "django",
"name": u"django",
"age": None
}
}]