From f475156eff8abf9faec0e0245ca3177d111a8db7 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 27 May 2021 08:56:58 -0700 Subject: [PATCH] Fix cockpit version check There's a 244.1. D'oh. Signed-off-by: Adam Williamson --- tests/realmd_join_cockpit.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/realmd_join_cockpit.pm b/tests/realmd_join_cockpit.pm index 959566a9..2ff7892a 100644 --- a/tests/realmd_join_cockpit.pm +++ b/tests/realmd_join_cockpit.pm @@ -50,7 +50,7 @@ sub run { # cockpit 232-244: https://github.com/cockpit-project/cockpit/issues/14895 $tabs = "\t\t\t" if ($cockpitver > 231); # ...in 245+ it's down to two times, for some reason - $tabs = "\t\t" if ($cockpitver > 244); + $tabs = "\t\t" if ($cockpitver >= 245); type_string($tabs, 4); type_string("ipa001.test.openqa.fedoraproject.org", 4); type_string("\t\t", 4);