Skip to content

Commit 8c3b58e

Browse files
committed
Fix small oversight in test moving to bytesio
1 parent 58ae7f6 commit 8c3b58e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_igzip_threaded.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def test_close_reader():
9393

9494

9595
def test_close_writer():
96-
f = igzip_threaded._ThreadedGzipWriter(io.BytesIO(), "wb")
96+
f = igzip_threaded._ThreadedGzipWriter(io.BytesIO())
9797
f.close()
9898
assert f.closed
9999
# Make sure double closing does not raise errors

0 commit comments

Comments
 (0)