Skip to content

Commit

Permalink
issue #615: Py3x fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dw committed Aug 9, 2019
1 parent c464bb5 commit 9e1e1ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ansible/tests/connection_test.py
Expand Up @@ -103,7 +103,7 @@ class FetchFileTest(ConnectionMixin, testlib.TestCase):
def test_success(self):
with tempfile.NamedTemporaryFile(prefix='mitotest') as ifp, \
tempfile.NamedTemporaryFile(prefix='mitotest') as ofp:
ifp.write('x' * (1048576 * 4))
ifp.write(b'x' * (1048576 * 4))
ifp.flush()
ifp.seek(0)

Expand Down

0 comments on commit 9e1e1ba

Please sign in to comment.