diff options
| author | Alessandro Pilotti <ap@pilotti.it> | 2013-03-01 02:23:48 +0200 |
|---|---|---|
| committer | Alessandro Pilotti <ap@pilotti.it> | 2013-03-01 02:23:48 +0200 |
| commit | d1414c8a4f44484a4b4c39d9ba5f8a9d386f696b (patch) | |
| tree | f0580d728957315d09fd207133f64602669ff74c /nova/tests | |
| parent | b58bd0cd9a6ecb960a7c833d1f4857629ed1ab05 (diff) | |
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
Diffstat (limited to 'nova/tests')
| -rw-r--r-- | nova/tests/test_hypervapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
