Remove duplicated test_migrate_disk_and_power_off()

test_migrate_disk_and_power_off() is written exactly twice

Partially fix bug 1037183

Change-Id: Ic1f3448d304a5fa64d14fd76a0215c4fb5895774
This commit is contained in:
Yun Mao 2012-08-24 20:32:58 -04:00
parent b7094b35f0
commit 8d5467178f

View File

@ -1039,14 +1039,6 @@ class XenAPIMigrateInstance(stubs.XenAPITestBase):
conn.migrate_disk_and_power_off(self.context, instance,
'127.0.0.1', instance_type, None)
def test_migrate_disk_and_power_off(self):
instance = db.instance_create(self.context, self.instance_values)
xenapi_fake.create_vm(instance.name, 'Running')
instance_type = db.instance_type_get_by_name(self.context, 'm1.large')
conn = xenapi_conn.XenAPIDriver(False)
conn.migrate_disk_and_power_off(self.context, instance,
'127.0.0.1', instance_type, None)
def test_migrate_disk_and_power_off_passes_exceptions(self):
instance = db.instance_create(self.context, self.instance_values)
xenapi_fake.create_vm(instance.name, 'Running')