From ab67e0ed35a7a9f23e1b61f61ec6503a3a97231d Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: Nov 29 2019 15:52:26 +0000 Subject: ipatests: fix teardown The uninstall method of some tests can be skipped as the cleanup is already done before. Reviewed-By: Christian Heimes --- diff --git a/ipatests/test_integration/test_ntp_options.py b/ipatests/test_integration/test_ntp_options.py index 2aa3b84..992c182 100644 --- a/ipatests/test_integration/test_ntp_options.py +++ b/ipatests/test_integration/test_ntp_options.py @@ -388,3 +388,8 @@ class TestNTPoptions(IntegrationTest): tasks.uninstall_client(self.client) tasks.uninstall_master(self.replica) tasks.uninstall_master(self.master) + + @classmethod + def uninstall(cls, mh): + # Cleanup already done in teardown_method + pass