Commit e3b16c8b by Tom Christie

Python 3 test fix

parent 78312d44
......@@ -128,7 +128,7 @@ class TestAPITestClient(TestCase):
self.assertEqual(response.data['user'], 'example')
self.client.logout()
response = self.client.get('/view/')
self.assertEqual(response.data['user'], b'')
self.assertEqual(response.data['user'], '')
def test_follow_redirect(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