Skip to content

Commit d4cd4dc

Browse files
committed
Remove illegal compress parameters
1 parent 300ef6b commit d4cd4dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_gzip_compliance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ def test_many_append(self):
205205
# Bug #1074261 was triggered when reading a file that contained
206206
# many, many members. Create such a file and verify that reading it
207207
# works.
208-
with igzip.IGzipFile(self.filename, 'wb', 9) as f:
208+
with igzip.IGzipFile(self.filename, 'wb') as f:
209209
f.write(b'a')
210210
for i in range(0, 200):
211-
with igzip.IGzipFile(self.filename, "ab", 9) as f: # append
211+
with igzip.IGzipFile(self.filename, "ab") as f: # append
212212
f.write(b'a')
213213

214214
# Try reading the file

0 commit comments

Comments
 (0)