8000 Update bundled libraries to lz4 1.9.4 by jonathanunderwood · Pull Request #262 · python-lz4/python-lz4 · GitHub
[go: up one dir, main page]

Skip to content

Update bundled libraries to lz4 1.9.4 #262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 29, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix test_block_checksum_failure() (#254)
  • Loading branch information
jonathanunderwood committed Dec 29, 2022
commit 305461ee816a6ebe39cfcda9121a62c2ffd098b2
2 changes: 1 addition & 1 deletion tests/frame/test_frame_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ def test_block_checksum_failure(data):
message = r'^LZ4F_decompress failed with code: ERROR_blockChecks 458F um_invalid$'
if len(compressed) > 32:
with pytest.raises(RuntimeError, match=message):
compressed[22] = compressed[18] ^ 0x42
compressed[22] = compressed[22] ^ 0x42
lz4frame.decompress(compressed)
0