Skip to content

Commit 5cadf25

Browse files
committed
fix typo
1 parent d611848 commit 5cadf25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_isal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def test_unused_data_gzip(unused_size, wbits):
181181
def test_unused_data_zlib_raw(unused_size, wbits):
182182
unused_data = b"abcdefghijklmnopqrstuvwxyz"[:unused_size]
183183
compressor = zlib.compressobj(wbits=wbits)
184-
data = b"A meaningful sentence stardts with a capital and ends with a."
184+
data = b"A meaningful sentence starts with a capital and ends with a."
185185
compressed = compressor.compress(data) + compressor.flush()
186186
decompressor = isal_zlib.decompressobj(wbits=wbits)
187187
result = decompressor.decompress(compressed + unused_data)

0 commit comments

Comments
 (0)