Skip to content

Commit

Permalink
two test-case failure scenario.
Browse files Browse the repository at this point in the history
  • Loading branch information
VatsalJagani committed Mar 8, 2024
1 parent 3500157 commit 1388f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_git_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_get_file_hash_with_tmp_file(sample_file):
def test_get_folder_hash_empty_folder():
folder_path = "empty_folder"
os.makedirs(folder_path)
expected_hash = "d41d8cd98f00b204e9800998ecf8427e" # MD5 hash of an empty string
expected_hash = "d41d8cd98f00b204e9800998ecf8427" # MD5 hash of an empty string
assert get_folder_hash(folder_path) == expected_hash
os.rmdir(folder_path)

Expand Down

0 comments on commit 1388f68

Please sign in to comment.