From 7bdaec0f8db57feae0589a44cf6e34aa2349dc80 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Sat, 28 Nov 2020 17:05:24 -0800 Subject: [PATCH] Check both anaconda.log and packaging.log for software selection It seems the message got moved to anaconda.log in Rawhide. I think it should be fine to just check both. Signed-off-by: Adam Williamson --- tests/_software_selection.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_software_selection.pm b/tests/_software_selection.pm index 989151a1..af298a51 100644 --- a/tests/_software_selection.pm +++ b/tests/_software_selection.pm @@ -21,7 +21,7 @@ sub run { elsif (get_var('SUBVARIANT') eq 'Workstation') { $env = 'workstation-product-environment'; } - assert_script_run "grep 'selected env' /tmp/packaging.log | tail -1 | grep $env"; + assert_script_run "grep 'selected env' /tmp/anaconda.log /tmp/packaging.log | tail -1 | grep $env"; send_key "ctrl-alt-f6"; assert_screen "anaconda_main_hub", 30; return;