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 8a93077 commit 93584afCopy full SHA for 93584af
numcodecs/tests/test_zstd.py
@@ -90,3 +90,10 @@ def test_native_functions():
90
assert Zstd.default_level() == 3
91
assert Zstd.min_level() == -131072
92
assert Zstd.max_level() == 22
93
+
94
95
+def test_zstd_config():
96
+ # Testing that checksum is removed from config if False
97
+ codec = Zstd(level=5, checksum=False)
98
+ config = codec.get_config()
99
+ assert config == {"id": "zstd", "level": 5}
0 commit comments