From dc0c72eda2bff0682a51aa72591b197b2dadbe5a Mon Sep 17 00:00:00 2001 From: Andy Ragusa Date: Wed, 10 Jul 2024 09:39:06 -0700 Subject: [PATCH] blah --- unit_tests/clamscan/save_html_urls_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unit_tests/clamscan/save_html_urls_test.py b/unit_tests/clamscan/save_html_urls_test.py index 1c3d13fafd..ed29936072 100644 --- a/unit_tests/clamscan/save_html_urls_test.py +++ b/unit_tests/clamscan/save_html_urls_test.py @@ -36,7 +36,7 @@ def tearDown(self): # Find the metadata.json file and verify its contents. #TODO: REMOVE THIS WHEN https://github.com/Cisco-Talos/clamav/pull/1295 is merged - def verify_metadata_json(self, tempdir, expected=[], unexpected=[]): + def verify_metadata_json_TEMPORARY(self, tempdir, expected=[], unexpected=[]): for parent, dirs, files in os.walk(tempdir): for f in files: if "metadata.json" == f: @@ -70,7 +70,7 @@ def test_save_links(self): , '"https://www.clamav.net/reports/malware"' , '"http://www.google.com"' ] - self.verify_metadata_json(tempdir, expected_strings) + self.verify_metadata_json_TEMPORARY(tempdir, expected_strings)