From 66917e791d9160b6f06072d3267cd80897594d75 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 22 May 2019 15:27:59 -0700 Subject: [PATCH] Fix the check from the last commit D'oh. Signed-off-by: Adam Williamson --- tests/install_text.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/install_text.pm b/tests/install_text.pm index db5e1fd8..19c2ca3c 100644 --- a/tests/install_text.pm +++ b/tests/install_text.pm @@ -62,7 +62,7 @@ sub run { send_key "ret"; wait_still_screen 5; # from Rawhide-20190503.n.0 (F31) onwards, 'use password' is default - if (get_release_number() > 30) { + if (get_release_number() < 31) { # typing "4\n" on abrt screen causes system to reboot, so be careful run_with_error_check(sub {type_string "4\n"}, "anaconda_text_error"); # use password }