Skip to content

Commit 9da2e7e

Browse files
committed
Fix small typo
1 parent 141b4fb commit 9da2e7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_gzip_compliance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ def test_compresslevel_metadata(self):
406406

407407
for (name, level, expectedXflByte) in cases:
408408
major, minor, _, _, _ = sys.version_info
409-
if major == 3 and minor <= 7 or major < 3:
409+
if major == 3 and minor < 7 or major < 3:
410410
# Specific xfl bytes introduced in 3.7
411411
expectedXflByte = b'\x02'
412412
with self.subTest(name):

0 commit comments

Comments
 (0)