From 6dfac42857d791346bef48a7152a834ba8dfc601 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 7 Feb 2023 08:54:28 -0800 Subject: [PATCH] call tearDown later --- certbot/tests/main_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/tests/main_test.py b/certbot/tests/main_test.py index 4b416272f..5eb03378b 100644 --- a/certbot/tests/main_test.py +++ b/certbot/tests/main_test.py @@ -581,10 +581,10 @@ class ReconfigureTest(test_util.TempDirTestCase): def tearDown(self): - super().tearDown() self.get_utility_patch.stop() for patch in self.patchers.values(): patch.stop() + super().tearDown() def _call(self, passed_args): full_args = passed_args + ['--config-dir', self.config_dir]