diff --git a/tests/test_s3/test_s3.py b/tests/test_s3/test_s3.py index ca54988f7..2b9fb7099 100644 --- a/tests/test_s3/test_s3.py +++ b/tests/test_s3/test_s3.py @@ -884,4 +884,4 @@ def test_boto3_bucket_create(): s3.Object('blah', 'hello.txt').put(Body="some text") - s3.Object('blah', 'hello.txt').get()['Body'].read().should.equal("some text") + s3.Object('blah', 'hello.txt').get()['Body'].read().decode("utf-8").should.equal("some text")