From 9d0d4f2139975696096a2be9999e97b02879af86 Mon Sep 17 00:00:00 2001 From: Helga Velroyen Date: Tue, 23 Jul 2013 17:08:00 +0200 Subject: [PATCH] Fix another missing renaming This fixes a (due to a merge) slipped occurence of VALID_STORAGE_TYPES which was renamed to STORAGE_TYPES. Signed-off-by: Helga Velroyen Reviewed-by: Michele Tartara --- test/py/ganeti.backend_unittest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/py/ganeti.backend_unittest.py b/test/py/ganeti.backend_unittest.py index 1aaeed7..5697dea 100755 --- a/test/py/ganeti.backend_unittest.py +++ b/test/py/ganeti.backend_unittest.py @@ -804,7 +804,7 @@ class TestSpaceReportingConstants(unittest.TestCase): self.assertTrue(backend._STORAGE_TYPE_INFO_FN[storage_type] is not None) def testAllNotReportingTypesDoneHaveFunction(self): - non_reporting_types = set(constants.VALID_STORAGE_TYPES)\ + non_reporting_types = set(constants.STORAGE_TYPES)\ - set(constants.STS_REPORT) for storage_type in non_reporting_types: self.assertEqual(None, backend._STORAGE_TYPE_INFO_FN[storage_type]) -- 1.7.10.4