From 3ec17ece7f546be7e42f4399a8247c403036f282 Mon Sep 17 00:00:00 2001 From: mulhern Date: Mon, 20 May 2024 21:18:58 -0400 Subject: [PATCH] stratisd_cert.py: setUp -> tearDown A notable effect of calling setUp instead of tearDown in the tearDown method is that the dbus monitor script is cleaned up early. That tearDown is not called is barely noticeable, since there is a clean_up method that is invoked after the tests concludes, regardless of whether it succeeded or failed. Signed-off-by: mulhern --- stratisd_cert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratisd_cert.py b/stratisd_cert.py index a0ff331..6506058 100644 --- a/stratisd_cert.py +++ b/stratisd_cert.py @@ -186,7 +186,7 @@ def tearDown(self): :return: None """ - super().setUp() + super().tearDown() RunPostTestChecks.tearDown(self)