From 4ba8febea3fe2d7658662dc24d2eccf31a1ffb87 Mon Sep 17 00:00:00 2001 From: gord chung Date: Thu, 30 Nov 2017 11:17:46 -0500 Subject: [PATCH] remove test_manager_exception_persistency i'm not sure exactly what this tests... but the original test[1] does not exist anymore [1] I808dcfae18d23240f8e095d6c97c8dede7dede8f Change-Id: I86a96557f7e316850adae32b9976cb1d7c7b12b3 --- ceilometer/tests/unit/polling/agentbase.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ceilometer/tests/unit/polling/agentbase.py b/ceilometer/tests/unit/polling/agentbase.py index 0f054a6c40..66e807c572 100644 --- a/ceilometer/tests/unit/polling/agentbase.py +++ b/ceilometer/tests/unit/polling/agentbase.py @@ -341,14 +341,6 @@ class BaseAgentManagerTestCase(base.BaseTestCase): self.addCleanup(mgr.terminate) mgr.create_polling_task.assert_called_once_with() - def test_manager_exception_persistency(self): - self.polling_cfg['sources'].append({ - 'name': 'test_polling_1', - 'interval': 60, - 'meters': ['testanother'], - }) - self.setup_polling() - def _verify_discovery_params(self, expected): self.assertEqual(expected, self.Discovery.params) self.assertEqual(expected, self.DiscoveryAnother.params)