Skip to content

Commit

Permalink
Merge pull request boto#924 from kyleknap/fix-test
Browse files Browse the repository at this point in the history
Use strings when writing contents
  • Loading branch information
kyleknap authored Dec 21, 2016
2 parents 2d1d630 + 060ec32 commit bce6c9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ def test_transfer_methods_do_not_use_threads(self):
# use ``boto3.s3.transfer.S3Transfer`` and the other should be
# using ``s3transfer.manager.TransferManager`` directly
content = b'my content'
filename = self.files.create_file('myfile', content)
filename = self.files.create_file('myfile', content.decode('utf-8'))
key = 'foo'
config = boto3.s3.transfer.TransferConfig(use_threads=False)

Expand Down

0 comments on commit bce6c9a

Please sign in to comment.