]> git.sur5r.net Git - i3/i3/commitdiff
testcases: undo 0f386a96 t/144-regress-floating-resize.t
authorMaik Fischer <maikf@qu.cx>
Mon, 21 Nov 2011 22:39:58 +0000 (23:39 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 21 Nov 2011 23:50:52 +0000 (23:50 +0000)
wait_for_map can't be used, since we don't set structure_notify
on the urxvts windows

testcases/t/144-regress-floating-resize.t

index fa1edda58312c31a27470b9a73a9854b5dd49959..de33eeb3961e76f581d08c9a7555ca937a81aea9 100644 (file)
@@ -12,10 +12,9 @@ use List::Util qw(sum);
 my $tmp = fresh_workspace;
 
 cmd 'exec /usr/bin/urxvt';
-wait_for_map $x;
+sleep 0.5;
 cmd 'exec /usr/bin/urxvt';
-wait_for_map $x;
-
+sleep 0.5;
 my ($nodes, $focus) = get_ws_content($tmp);
 my $old_sum = sum map { $_->{rect}->{width} } @{$nodes};
 #cmd 'open';
@@ -23,13 +22,12 @@ cmd 'resize grow left 10 px or 25 ppt';
 cmd 'split v';
 #cmd 'open';
 cmd 'exec /usr/bin/urxvt';
-wait_for_map $x;
-
+sleep 0.5;
 cmd 'mode toggle';
-sync_with_i3 $x;
-
+sleep 0.5;
 cmd 'kill';
-wait_for_unmap $x;
+
+sleep 0.5;
 
 ($nodes, $focus) = get_ws_content($tmp);
 my $new_sum = sum map { $_->{rect}->{width} } @{$nodes};