From: Kyr Shatskyy Date: Tue, 9 Sep 2025 08:57:42 +0000 (+0200) Subject: provision/downburst: update tests respecting latest defaults X-Git-Tag: 1.2.2^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2fbb360780a0a4304b6b4932441aea8eebc0dba8;p=teuthology.git provision/downburst: update tests respecting latest defaults Signed-off-by: Kyr Shatskyy --- diff --git a/teuthology/test/test_vps_os_vers_parameter_checking.py b/teuthology/test/test_vps_os_vers_parameter_checking.py index 7a4cfd32f..8a66f24a0 100644 --- a/teuthology/test/test_vps_os_vers_parameter_checking.py +++ b/teuthology/test/test_vps_os_vers_parameter_checking.py @@ -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,