diff options
| author | Cody Logan <cody@lokken.dev> | 2023-11-15 10:36:18 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-15 10:36:18 -0800 |
| commit | bf3a7db6cf83fa7d224d84c47b40cfe32603019c (patch) | |
| tree | ffeb394c3da9e4a2dcbc6a92caa956d5c83441eb /tests/test_validations.py | |
| parent | 55a5311ee4da639a65bd60622315f3fff6936c9a (diff) | |
| download | wikiget-bf3a7db6cf83fa7d224d84c47b40cfe32603019c.tar.gz wikiget-bf3a7db6cf83fa7d224d84c47b40cfe32603019c.zip | |
Convert File.dest from a string to a Path (#14)
Diffstat (limited to 'tests/test_validations.py')
| -rw-r--r-- | tests/test_validations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_validations.py b/tests/test_validations.py index aa4fdd0..072858e 100644 --- a/tests/test_validations.py +++ b/tests/test_validations.py @@ -170,4 +170,4 @@ class TestVerifyHash: """ expected_sha1 = "cd19c009a30ca9b68045415a3a0838e64f3c2443" - assert verify_hash(str(test_file)) == expected_sha1 + assert verify_hash(test_file) == expected_sha1 |
