summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorArata Notsu <notsu@virtualtech.jp>2012-10-18 22:40:01 +0900
committerArata Notsu <notsu@virtualtech.jp>2012-10-18 22:40:01 +0900
commit2cb47fbabf09ced76178e8453d508c66f86a7a3a (patch)
tree3c1e9fa05db610481d209e6b2f2be730bc2e04cf /nova/tests
parent5d677e204c99fbcf86e0c721ad2fd327a03c35c2 (diff)
Remove ComputeDriver.update_host_status()
Nobody calls the method. Change-Id: Ib585f769788753c64e19fe49a1f186880e1c6f49
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/test_virt_drivers.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/nova/tests/test_virt_drivers.py b/nova/tests/test_virt_drivers.py
index 05fe140d1..d5a2203f3 100644
--- a/nova/tests/test_virt_drivers.py
+++ b/nova/tests/test_virt_drivers.py
@@ -459,11 +459,6 @@ class _VirtDriverTestCase(_FakeDriverBackendTestCase):
self.assertIn('host_memory_free', host_status)
@catch_notimplementederror
- def test_update_host_status(self):
- host_status = self.connection.update_host_status()
- self._check_host_status_fields(host_status)
-
- @catch_notimplementederror
def test_get_host_stats(self):
host_status = self.connection.get_host_stats()
self._check_host_status_fields(host_status)