diff options
| author | Ryu Ishimoto <ryu@midokura.jp> | 2011-07-21 23:55:10 +0900 |
|---|---|---|
| committer | Ryu Ishimoto <ryu@midokura.jp> | 2011-07-21 23:55:10 +0900 |
| commit | 337c1ae31b348f3103db09e81af6f27d5290b79e (patch) | |
| tree | 65a759c665e0cae24ce4cfddcc68d03ae800c9de | |
| parent | eef6d4376a6e41883c43c78215cb3b8b1830766f (diff) | |
Fixed Xenapi unit test error of test_rescue
| -rw-r--r-- | nova/tests/test_xenapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/test_xenapi.py b/nova/tests/test_xenapi.py index 4cb7447d3..199a8bc52 100644 --- a/nova/tests/test_xenapi.py +++ b/nova/tests/test_xenapi.py @@ -647,7 +647,7 @@ class XenAPIVMTestCase(test.TestCase): self.flags(xenapi_inject_image=False) instance = self._create_instance() conn = xenapi_conn.get_connection(False) - conn.rescue(instance, None) + conn.rescue(instance, None, []) def test_unrescue(self): instance = self._create_instance() |
