Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dholth committed Jan 7, 2025
1 parent 448a888 commit e3f4f48
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,8 @@ def test_checksum(tmp_path):
with tmp_file.open("rb") as f:
with pytest.raises(ValueError):
utils._checksum(f, "chicken")
assert utils.sha256_checksum(f) == "3b9c358f36f0a31b6ad3e14f309c7cf198ac9246e8316f9ce543d5b19ac02b80"
assert (
utils.sha256_checksum(f)
== "3b9c358f36f0a31b6ad3e14f309c7cf198ac9246e8316f9ce543d5b19ac02b80"
)
assert utils.md5_checksum(f) == "d41d8cd98f00b204e9800998ecf8427e"

0 comments on commit e3f4f48

Please sign in to comment.