From 014d9d10b4e7106eb4c306791459792bc8ea6829 Mon Sep 17 00:00:00 2001 From: Tyler Johnson Date: Tue, 19 Nov 2019 11:10:42 -0700 Subject: [PATCH] Fixed vultr list_sizes test --- .../cloud/clouds/{test_vultrpy.py => test_vultr.py} | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) rename tests/integration/cloud/clouds/{test_vultrpy.py => test_vultr.py} (96%) diff --git a/tests/integration/cloud/clouds/test_vultrpy.py b/tests/integration/cloud/clouds/test_vultr.py similarity index 96% rename from tests/integration/cloud/clouds/test_vultrpy.py rename to tests/integration/cloud/clouds/test_vultr.py index f0dc58e309..c912814403 100644 --- a/tests/integration/cloud/clouds/test_vultrpy.py +++ b/tests/integration/cloud/clouds/test_vultr.py @@ -45,10 +45,7 @@ class VultrTest(CloudTest): Tests the return of running the --list-sizes command for Vultr ''' size_list = self.run_cloud('--list-sizes {0}'.format(self.PROVIDER)) - self.assertIn( - '32768 MB RAM,4x110 GB SSD,40.00 TB BW', - [i.strip() for i in size_list] - ) + self.assertIn('2048 MB RAM,64 GB SSD,2.00 TB BW', [i.strip() for i in size_list]) # Commented for now, Vultr driver does not yet support key management # def test_key_management(self):