Fix s3 py3 test for unicode.

This commit is contained in:
Steve Pulec 2015-08-02 09:59:16 -04:00
parent ff8dd7530d
commit dd092fa9dc

View File

@ -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")