From 4cc2fd87820cffc5d67fa462111b378499874fed Mon Sep 17 00:00:00 2001 From: Onur Atakan ULUSOY Date: Wed, 11 May 2022 17:05:39 +0000 Subject: [PATCH] Fixed the assert equal control --- tests/unit_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests.py b/tests/unit_tests.py index 49e1c16..09d7501 100644 --- a/tests/unit_tests.py +++ b/tests/unit_tests.py @@ -348,6 +348,6 @@ class deepface_unit_tests(unittest.TestCase): print("--------------------------") - self.assertEqual(accuracy >= min_score, False, "A problem on the deepface installation.") + self.assertEqual(accuracy >= min_score, True, "A problem on the deepface installation.") unittest.main(exit=False) \ No newline at end of file