From 68d743aa2427409f94cdbba9a1d2f8a325e49df8 Mon Sep 17 00:00:00 2001 From: jbannon Date: Wed, 10 Aug 2022 19:02:18 +0000 Subject: [PATCH] fix ignore md5 logic --- tests/e2e/expected_download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/expected_download.py b/tests/e2e/expected_download.py index 34530f60..657422c5 100644 --- a/tests/e2e/expected_download.py +++ b/tests/e2e/expected_download.py @@ -71,7 +71,7 @@ class ExpectedDownloads: full_path ), f"Expected {str(expected_download.path)} to be a file but it is not" - if expected_download.path in ignore_md5_hashes_for: + if str(expected_download.path) in ignore_md5_hashes_for: continue md5_hash = _get_file_md5_hash(full_file_path=full_path)