Skip to content

Commit fdc0f8a

Browse files
committed
Update version test case
1 parent 4ea7d4b commit fdc0f8a

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tests/test_zlib_compliance.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,7 @@ def test_library_version(self):
4343
# the minor versions will match (even on the machine on which the
4444
# module was compiled), and the API is stable between minor versions,
4545
# so testing only the major versions avoids spurious failures.
46-
# TODO: Ask for isal current version upstream
47-
if sys.platform.startswith("win"):
48-
# No isa-l.h on windows, so no version information there.
49-
self.assertEqual(isal.ISAL_MAJOR_VERSION, None)
50-
else:
51-
self.assertEqual(isal.ISAL_MAJOR_VERSION, 2)
46+
self.assertEqual(isal.ISAL_MAJOR_VERSION, 2)
5247

5348

5449
class ChecksumTestCase(unittest.TestCase):

0 commit comments

Comments
 (0)