From 88f422a38f3988ee3c0ed77b4820f7d66bed0fff Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 28 Apr 2023 15:21:49 -0700 Subject: [PATCH] Drop a no-op workaround (needle hasn't existed since 2021) The needle that backs this workaround was dropped in the 2021 needle cleanup, so it's never worked since then. I checked, and no aarch64 tests seem to be failing on this any more. Signed-off-by: Adam Williamson --- lib/anaconda.pm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/anaconda.pm b/lib/anaconda.pm index 649828e1..632f6773 100644 --- a/lib/anaconda.pm +++ b/lib/anaconda.pm @@ -107,12 +107,6 @@ sub custom_scheme_select { assert_and_click "anaconda_part_scheme"; # Move the mouse away from the menu mouse_set(10, 10); - # workaround for bug aarch64 tests sometimes hit - menu doesn't - # open when clicked. just click it again. - if (check_screen "anaconda_part_scheme_active", 5) { - assert_and_click "anaconda_part_scheme_active"; - mouse_set(10, 10); - } assert_and_click "anaconda_part_scheme_$scheme"; }