summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-06-01 14:12:17 +0000
committerGerrit Code Review <review@openstack.org>2012-06-01 14:12:17 +0000
commita91693bae9383e1947cb8fdbcaf0bcbc549eea15 (patch)
treea8aae2830d5c2b8fd0d86e1b8fd1d54d88ab1fff /nova/tests
parent2f48ee1621a2fa52fe8cf5dc6c6d6938a197690f (diff)
parent836ffbd489f28a1d370cb1003bd8d62de4783351 (diff)
Merge "Add finish_revert_resize() to the compute rpcapi."
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/compute/test_rpcapi.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/tests/compute/test_rpcapi.py b/nova/tests/compute/test_rpcapi.py
index de9d337f9..47c986c71 100644
--- a/nova/tests/compute/test_rpcapi.py
+++ b/nova/tests/compute/test_rpcapi.py
@@ -104,6 +104,10 @@ class ComputeRpcAPITestCase(test.TestCase):
self._test_compute_api('detach_volume', 'cast',
instance=self.fake_instance, volume_id='id')
+ def test_finish_revert_resize(self):
+ self._test_compute_api('finish_revert_resize', 'cast',
+ instance=self.fake_instance, migration_id='id', host='host')
+
def test_get_console_output(self):
self._test_compute_api('get_console_output', 'call',
instance=self.fake_instance, tail_length='tl')