From 72021b8d4924a0ca089e155e63958bc478ea4ddc Mon Sep 17 00:00:00 2001 From: Will Robertson Date: Thu, 14 Mar 2024 07:10:18 +1030 Subject: [PATCH] broke tests --- tests/generic_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/generic_test.py b/tests/generic_test.py index 5815fad..97c82fe 100644 --- a/tests/generic_test.py +++ b/tests/generic_test.py @@ -8,7 +8,7 @@ class GenericTest(unittest.TestCase): will be removed at the end of the tests. """ def tearDown(self): - #path = "{}.png".format(self.figure_name) + path = "{}.png".format(self.figure_name) # Comment this to check the resulting image - # if os.path.exists(path): - # os.remove(path) + if os.path.exists(path): + os.remove(path)