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 d611848 commit 5cadf25Copy full SHA for 5cadf25
tests/test_isal.py
@@ -181,7 +181,7 @@ def test_unused_data_gzip(unused_size, wbits):
181
def test_unused_data_zlib_raw(unused_size, wbits):
182
unused_data = b"abcdefghijklmnopqrstuvwxyz"[:unused_size]
183
compressor = zlib.compressobj(wbits=wbits)
184
- data = b"A meaningful sentence stardts with a capital and ends with a."
+ data = b"A meaningful sentence starts with a capital and ends with a."
185
compressed = compressor.compress(data) + compressor.flush()
186
decompressor = isal_zlib.decompressobj(wbits=wbits)
187
result = decompressor.decompress(compressed + unused_data)
0 commit comments