From ab4468310ec8ae29ba5a1be5fe93b99493548fe7 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Nov 27 2020 01:10:37 +0000 Subject: Extend cockpit #14895 workaround to all post-231 releases It still seems to be broken in 233 and 233.1; I limited the workaround to 232 at first as Cockpit are usually good at fixing things very fast, but as this one has sat for a while, let's leave it worked-around until we know it's fixed. Signed-off-by: Adam Williamson --- diff --git a/tests/realmd_join_cockpit.pm b/tests/realmd_join_cockpit.pm index 29920bc..74ad107 100644 --- a/tests/realmd_join_cockpit.pm +++ b/tests/realmd_join_cockpit.pm @@ -48,7 +48,7 @@ sub run { assert_screen "cockpit_join_domain"; # we need to hit tab three times to reach 'Domain address' in # cockpit 232: https://github.com/cockpit-project/cockpit/issues/14895 - my $tabs = $cockpitver eq "232" ? "\t\t\t" : "\t"; + my $tabs = $cockpitver > 231 ? "\t\t\t" : "\t"; type_string($tabs, 4); type_string("ipa001.domain.local", 4); type_string("\t\t", 4);