diff options
author | Joe Gordon <jogo@cloudscaling.com> | 2013-02-26 00:42:55 +0000 |
---|---|---|
committer | Joe Gordon <jogo@cloudscaling.com> | 2013-02-26 01:05:14 +0000 |
commit | 9f9e95e50e7fb0d6ddac3db40a25a172091ceb12 (patch) | |
tree | b73ad8eb027f79e1eb1116640915caf1ef579470 | |
parent | d9bbcfb76646cb77d9dfc867f057917b3e059a4f (diff) | |
download | nova-9f9e95e50e7fb0d6ddac3db40a25a172091ceb12.tar.gz nova-9f9e95e50e7fb0d6ddac3db40a25a172091ceb12.tar.xz nova-9f9e95e50e7fb0d6ddac3db40a25a172091ceb12.zip |
Fix redefinition of function test_get_host_uptime
First test_get_host_uptime was missing a parameter that the
second test contains. So remove first test.
Fixes bug 1133062
Change-Id: Id886f4e52f45505117fd8e7bf30bc4d77cacd47b
-rw-r--r-- | nova/tests/compute/test_rpcapi.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/nova/tests/compute/test_rpcapi.py b/nova/tests/compute/test_rpcapi.py index 1257f67e1..6c40a95e2 100644 --- a/nova/tests/compute/test_rpcapi.py +++ b/nova/tests/compute/test_rpcapi.py @@ -162,9 +162,6 @@ class ComputeRpcAPITestCase(test.TestCase): self._test_compute_api('get_diagnostics', 'call', instance=self.fake_instance) - def test_get_host_uptime(self): - self._test_compute_api('get_host_uptime', 'call') - def test_get_vnc_console(self): self._test_compute_api('get_vnc_console', 'call', instance=self.fake_instance, console_type='type') |