From 64b984a38de392adf45f06d4568538a4d1478e60 Mon Sep 17 00:00:00 2001 From: mulhern Date: Tue, 26 Nov 2024 16:45:34 -0500 Subject: [PATCH] Do not make RunPostTestChecks inherit from TestCase Aside from the coinciding setUp and tearDown names, it has nothing to do with a TestCase. Signed-off-by: mulhern --- testlib/infra.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testlib/infra.py b/testlib/infra.py index 04cb471..1d5afe5 100644 --- a/testlib/infra.py +++ b/testlib/infra.py @@ -597,7 +597,7 @@ def __str__(self): return self.value -class RunPostTestChecks(unittest.TestCase): +class RunPostTestChecks: """ Manage running post test checks """