Skip to content

Commit

Permalink
Increse counter for excluded wsl-systemd pattern
Browse files Browse the repository at this point in the history
Exclude wsl-systemd including wsl-tmpfiles pattern

https://progress.opensuse.org/issues/167356
  • Loading branch information
dzedro committed Sep 26, 2024
1 parent 8fd2a43 commit 609082d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/y2_installbase.pm
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,8 @@ sub deselect_pattern {
@patterns{split(/,/, get_var('EXCLUDE_PATTERNS'))} = ();
$self->go_to_patterns();
for my $p (keys %patterns) {
send_key_until_needlematch "$p-selected", 'down';
my $count = $p =~ 'wsl' ? '40' : '20';
send_key_until_needlematch "$p-selected", 'down', $count;
send_key ' '; #deselect pattern
assert_screen 'on-pattern';
}
Expand Down

0 comments on commit 609082d

Please sign in to comment.