Skip to content

Commit

Permalink
fix python3 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thefab committed Mar 8, 2017
1 parent 1833484 commit f145de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_client.py
Expand Up @@ -101,7 +101,7 @@ def test_read_timeout2(self):
res = yield c.connect()
self.assertTrue(res)
res2 = yield c.call('PING')
self.assertEqual(res2, "PONG")
self.assertEqual(res2, b"PONG")
yield tornado.gen.sleep(2)
res3 = yield c.call('PING')
self.assertTrue(isinstance(res3, ConnectionError))
Expand Down

0 comments on commit f145de3

Please sign in to comment.