diff options
| author | Pádraig Brady <pbrady@redhat.com> | 2012-07-24 00:14:11 +0100 |
|---|---|---|
| committer | Pádraig Brady <pbrady@redhat.com> | 2012-07-24 00:18:52 +0100 |
| commit | 50c74cc7af619b96eb9e1b3db8d1e8a289afb6da (patch) | |
| tree | be3beb1d7db93e170a29cf9bebbf206e98cb4f62 | |
| parent | 8a164f5e05509307720ad8a8f39ab1f352553098 (diff) | |
| download | nova-50c74cc7af619b96eb9e1b3db8d1e8a289afb6da.tar.gz nova-50c74cc7af619b96eb9e1b3db8d1e8a289afb6da.tar.xz nova-50c74cc7af619b96eb9e1b3db8d1e8a289afb6da.zip | |
tests: remove misleading docstrings on libvirt tests
These docstrings take precedence over the method name,
to identify the test in the results. So just remove
these misleading docstrings as they don't give extra
info over the method name itself.
Change-Id: I4c415f8c4be588f5de751ab8e4d21e85a18f6b75
| -rw-r--r-- | nova/tests/test_libvirt.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/nova/tests/test_libvirt.py b/nova/tests/test_libvirt.py index f93c724bc..77e4c6075 100644 --- a/nova/tests/test_libvirt.py +++ b/nova/tests/test_libvirt.py @@ -1732,7 +1732,6 @@ class LibvirtConnTestCase(test.TestCase): db.instance_destroy(self.context, instance_ref['uuid']) def test_pre_live_migration_works_correctly_mocked(self): - """Confirms pre_block_migration works correctly.""" # Creating testdata vol = {'block_device_mapping': [ {'connection_info': 'dummy', 'mount_device': '/dev/sda'}, @@ -1764,7 +1763,6 @@ class LibvirtConnTestCase(test.TestCase): self.assertEqual(result, None) def test_pre_block_migration_works_correctly(self): - """Confirms pre_block_migration works correctly.""" # Replace instances_path since this testcase creates tmpfile with utils.tempdir() as tmpdir: self.flags(instances_path=tmpdir) @@ -1788,7 +1786,6 @@ class LibvirtConnTestCase(test.TestCase): db.instance_destroy(self.context, instance_ref['uuid']) def test_get_instance_disk_info_works_correctly(self): - """Confirms pre_block_migration works correctly.""" # Test data instance_ref = db.instance_create(self.context, self.test_instance) dummyxml = ("<domain type='kvm'><name>instance-0000000a</name>" |
