tests: don’t wait for window map event in open_special

Since the window doesn’t get mapped at all in these tests (it’s assigned to an
invisible workspace), this saves us a timeout of 2 seconds :).
This commit is contained in:
Michael Stapelberg 2012-02-21 13:40:53 +01:00
parent ab9ba6fcf9
commit 7e05a0700a
2 changed files with 12 additions and 2 deletions

View File

@ -30,10 +30,15 @@ sub open_special {
my $wm_class = delete($args{wm_class}) || 'special';
$args{name} //= 'special window';
return open_window(
# We use dont_map because i3 will not map the window on the current
# workspace. Thus, open_window would time out in wait_for_map (2 seconds).
my $window = open_window(
%args,
before_map => sub { set_wm_class($_->id, $wm_class, $wm_class) },
dont_map => 1,
);
$window->map;
return $window;
}
#####################################################################

View File

@ -31,10 +31,15 @@ sub open_special {
my $wm_class = delete($args{wm_class}) || 'special';
$args{name} //= 'special window';
return open_window(
# We use dont_map because i3 will not map the window on the current
# workspace. Thus, open_window would time out in wait_for_map (2 seconds).
my $window = open_window(
%args,
before_map => sub { set_wm_class($_->id, $wm_class, $wm_class) },
dont_map => 1,
);
$window->map;
return $window;
}
#####################################################################