]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
provision/downburst: update tests respecting latest defaults
authorKyr Shatskyy <kyrylo.shatskyy@clyso.com>
Tue, 9 Sep 2025 08:57:42 +0000 (10:57 +0200)
committerKyr Shatskyy <kyrylo.shatskyy@clyso.com>
Tue, 9 Sep 2025 19:32:08 +0000 (21:32 +0200)
Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@clyso.com>
teuthology/test/test_vps_os_vers_parameter_checking.py

index 7a4cfd32fa5a04af517b611638fbe4af2a776d1a..8a66f24a0e222d1b3736111ca0ae1c9a9ea7f96a 100644 (file)
@@ -17,9 +17,9 @@ class TestVpsOsVersionParamCheck(object):
 
         self.fake_downburst_executable = fake_downburst_executable
 
-    def test_ubuntu_precise(self):
+    def test_ubuntu_noble(self):
         self.fake_ctx.os_type = 'ubuntu'
-        self.fake_ctx.os_version = 'precise'
+        self.fake_ctx.os_version = 'noble'
         with patch.multiple(
             provision.downburst,
             downburst_executable=self.fake_downburst_executable,
@@ -33,7 +33,7 @@ class TestVpsOsVersionParamCheck(object):
 
     def test_ubuntu_number(self):
         self.fake_ctx.os_type = 'ubuntu'
-        self.fake_ctx.os_version = '12.04'
+        self.fake_ctx.os_version = '24.04'
         with patch.multiple(
             provision.downburst,
             downburst_executable=self.fake_downburst_executable,