]> git.sur5r.net Git - i3/i3/commitdiff
tests: t/166-assign.t: use wait_for_window
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 29 Jun 2012 21:20:46 +0000 (23:20 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 29 Jun 2012 21:20:46 +0000 (23:20 +0200)
While it’s generally intended that wait_for_window is not called within
this testcase, in the first test instruction it was a mistake. The
window in fact gets mapped and therefore we should call wait_for_window.

testcases/t/166-assign.t

index a4a70c8b14aa2fa1a8a7c1e1da61350d21e0c6ad..3a8a10d5fe166baf27714ab7b55047debd7c3a57 100644 (file)
@@ -57,6 +57,7 @@ my $tmp = fresh_workspace;
 ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
 
 my $window = open_special;
+wait_for_map($window);
 
 ok(@{get_ws_content($tmp)} == 1, 'special window got managed to current (random) workspace');