From ad9b40088f37bbadfc1c790df93cb581e4b22b4f Mon Sep 17 00:00:00 2001 From: Petr Andriushchenko Date: Fri, 24 Mar 2023 11:22:39 +0100 Subject: [PATCH] fixed test_objects.py --- misinformation/test/test_objects.py | 1 + 1 file changed, 1 insertion(+) diff --git a/misinformation/test/test_objects.py b/misinformation/test/test_objects.py index bf4ede4..32bd161 100644 --- a/misinformation/test/test_objects.py +++ b/misinformation/test/test_objects.py @@ -31,6 +31,7 @@ def test_analyse_image_cvlib(get_path): with open(get_path + JSON_1, "r") as file: out_dict = json.load(file) + out_dict["filename"] = get_path + out_dict["filename"] for key in mydict.keys(): assert mydict[key] == out_dict[key]