From 9f9e95e50e7fb0d6ddac3db40a25a172091ceb12 Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Tue, 26 Feb 2013 00:42:55 +0000 Subject: 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 --- nova/tests/compute/test_rpcapi.py | 3 --- 1 file changed, 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') -- cgit