diff --git a/tests/test_utils.py b/tests/test_utils.py index 22af6ac4..4c4b29de 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -133,7 +133,7 @@ class TestLengthWrapper(testtools.TestCase): self.assertEqual('a' * 42, read_data) def test_tempfile(self): - with tempfile.NamedTemporaryFile() as f: + with tempfile.NamedTemporaryFile(mode='w') as f: f.write('a' * 100) f.flush() contents = open(f.name) @@ -144,7 +144,7 @@ class TestLengthWrapper(testtools.TestCase): self.assertEqual('a' * 42, read_data) def test_segmented_file(self): - with tempfile.NamedTemporaryFile() as f: + with tempfile.NamedTemporaryFile(mode='w') as f: segment_length = 1024 segments = ('a', 'b', 'c', 'd') for c in segments: