Skip to content

Commit

Permalink
Fix failing integ test on py3
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesls committed Dec 2, 2014
1 parent ffcef5f commit a3f026e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_kinesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_can_put_stream_blob(self):
records = self.client.get_records(
ShardIterator=shard_iterator['ShardIterator'])
self.assertTrue(len(records['Records']) > 0)
self.assertEqual(records['Records'][0]['Data'], 'foobar')
self.assertEqual(records['Records'][0]['Data'], b'foobar')


if __name__ == '__main__':
Expand Down

0 comments on commit a3f026e

Please sign in to comment.