We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea7d4b commit fdc0f8aCopy full SHA for fdc0f8a
tests/test_zlib_compliance.py
@@ -43,12 +43,7 @@ def test_library_version(self):
43
# the minor versions will match (even on the machine on which the
44
# module was compiled), and the API is stable between minor versions,
45
# 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)
+ self.assertEqual(isal.ISAL_MAJOR_VERSION, 2)
52
53
54
class ChecksumTestCase(unittest.TestCase):
0 commit comments