From d1414c8a4f44484a4b4c39d9ba5f8a9d386f696b Mon Sep 17 00:00:00 2001 From: Alessandro Pilotti Date: Fri, 1 Mar 2013 02:23:48 +0200 Subject: Fixes the Hyper-V driver's method signature Fixes Bug: 1132772 Corrects an issue in the Hyper-V driver's destroy method argument list. Change-Id: Ieb15df80a2d3738a46f7bdd56ba0de57b68fac14 --- nova/tests/test_hypervapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/tests') diff --git a/nova/tests/test_hypervapi.py b/nova/tests/test_hypervapi.py index 5912bb301..aaceff8ec 100644 --- a/nova/tests/test_hypervapi.py +++ b/nova/tests/test_hypervapi.py @@ -516,7 +516,7 @@ class HyperVAPITestCase(test.TestCase): self._setup_destroy_mocks() self._mox.ReplayAll() - self._conn.destroy(self._instance_data) + self._conn.destroy(self._instance_data, None) self._mox.VerifyAll() def test_live_migration(self): -- cgit