From 2cb47fbabf09ced76178e8453d508c66f86a7a3a Mon Sep 17 00:00:00 2001 From: Arata Notsu Date: Thu, 18 Oct 2012 22:40:01 +0900 Subject: Remove ComputeDriver.update_host_status() Nobody calls the method. Change-Id: Ib585f769788753c64e19fe49a1f186880e1c6f49 --- nova/tests/test_virt_drivers.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'nova/tests') 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 @@ -458,11 +458,6 @@ class _VirtDriverTestCase(_FakeDriverBackendTestCase): self.assertIn('host_memory_total', host_status) 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() -- cgit