diff --git a/nova/tests/test_libvirt.py b/nova/tests/test_libvirt.py index 10ef7805..2b405152 100644 --- a/nova/tests/test_libvirt.py +++ b/nova/tests/test_libvirt.py @@ -171,9 +171,6 @@ class CacheConcurrencyTestCase(test.TestCase): 'nova.virt.libvirt.imagebackend.libvirt_utils', fake_libvirt_utils)) - def tearDown(self): - super(CacheConcurrencyTestCase, self).tearDown() - def test_same_fname_concurrency(self): # Ensures that the same fname cache runs at a sequentially. uuid = uuidutils.generate_uuid() diff --git a/nova/tests/test_virt_disk_vfs_localfs.py b/nova/tests/test_virt_disk_vfs_localfs.py index 096a7596..5bbac670 100644 --- a/nova/tests/test_virt_disk_vfs_localfs.py +++ b/nova/tests/test_virt_disk_vfs_localfs.py @@ -148,10 +148,6 @@ class VirtDiskVFSLocalFSTestPaths(test.TestCase): class VirtDiskVFSLocalFSTest(test.TestCase): - - def setUp(self): - super(VirtDiskVFSLocalFSTest, self).setUp() - def test_makepath(self): global dirs, commands dirs = [] diff --git a/nova/tests/test_virt_drivers.py b/nova/tests/test_virt_drivers.py index ae7f410f..39566360 100644 --- a/nova/tests/test_virt_drivers.py +++ b/nova/tests/test_virt_drivers.py @@ -192,9 +192,6 @@ class _VirtDriverTestCase(_FakeDriverBackendTestCase): self.ctxt = test_utils.get_test_admin_context() self.image_service = fake_image.FakeImageService() - def tearDown(self): - super(_VirtDriverTestCase, self).tearDown() - def _get_running_instance(self): instance_ref = test_utils.get_test_instance() network_info = test_utils.get_test_network_info()