Skip to content

Commit

Permalink
Update tests/test_utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez authored Jan 9, 2025
1 parent e3f4f48 commit 8567b16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def test_checksum(tmp_path):
with pytest.raises(ValueError):
utils._checksum(f, "chicken")
assert (
utils.sha256_checksum(f)
== "3b9c358f36f0a31b6ad3e14f309c7cf198ac9246e8316f9ce543d5b19ac02b80"
utils.sha256_checksum(f) ==
"3b9c358f36f0a31b6ad3e14f309c7cf198ac9246e8316f9ce543d5b19ac02b80"
)
assert utils.md5_checksum(f) == "d41d8cd98f00b204e9800998ecf8427e"

0 comments on commit 8567b16

Please sign in to comment.