diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-11-06 07:20:37 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-11-06 07:20:37 +0000 |
| commit | b0efa623936bbe95efd467a166cb990266db2487 (patch) | |
| tree | 7487ac40ae426af2ed22f34272a7588d0a19d5eb /nova/tests | |
| parent | 181e44c9e5327392e5b4b9da18b5ce863780a3b1 (diff) | |
| parent | cfceed71dabfbac538e65bd1d5a95197beb94001 (diff) | |
Merge "Look up stuck-in-rebooting instances in manager"
Diffstat (limited to 'nova/tests')
| -rw-r--r-- | nova/tests/test_virt_drivers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/tests/test_virt_drivers.py b/nova/tests/test_virt_drivers.py index 1f30ee695..9d48cdf06 100644 --- a/nova/tests/test_virt_drivers.py +++ b/nova/tests/test_virt_drivers.py @@ -269,7 +269,8 @@ class _VirtDriverTestCase(_FakeDriverBackendTestCase): @catch_notimplementederror def test_poll_rebooting_instances(self): - self.connection.poll_rebooting_instances(10) + instances = [self._get_running_instance()] + self.connection.poll_rebooting_instances(10, instances) @catch_notimplementederror def test_poll_rescued_instances(self): |
