tests: replace left-over move before/after commands (Thanks mxf)

next
Michael Stapelberg 2011-11-21 18:54:20 +00:00
parent 2783aa9fc9
commit 8a9b093bc3
2 changed files with 4 additions and 4 deletions

View File

@ -21,8 +21,8 @@ my $left = open_window($x);
my $mid = open_window($x);
my $right = open_window($x);
cmd 'move before v';
cmd 'move after h';
cmd 'move up';
cmd 'move right';
my $ws = get_ws($tmp);
is($ws->{orientation}, 'horizontal', 'workspace orientation is horizontal');

View File

@ -29,14 +29,14 @@ cmd 'mode toggle';
sleep 0.25;
# move the con outside the floating con
cmd 'move before v';
cmd 'move up';
sleep 0.25;
does_i3_live;
# move another con outside
cmd '[id="' . $mid->id . '"] focus';
cmd 'move before v';
cmd 'move up';
sleep 0.25;
does_i3_live;