tests: replace left-over move before/after commands (Thanks mxf)
This commit is contained in:
parent
2783aa9fc9
commit
8a9b093bc3
|
@ -21,8 +21,8 @@ my $left = open_window($x);
|
||||||
my $mid = open_window($x);
|
my $mid = open_window($x);
|
||||||
my $right = open_window($x);
|
my $right = open_window($x);
|
||||||
|
|
||||||
cmd 'move before v';
|
cmd 'move up';
|
||||||
cmd 'move after h';
|
cmd 'move right';
|
||||||
my $ws = get_ws($tmp);
|
my $ws = get_ws($tmp);
|
||||||
|
|
||||||
is($ws->{orientation}, 'horizontal', 'workspace orientation is horizontal');
|
is($ws->{orientation}, 'horizontal', 'workspace orientation is horizontal');
|
||||||
|
|
|
@ -29,14 +29,14 @@ cmd 'mode toggle';
|
||||||
sleep 0.25;
|
sleep 0.25;
|
||||||
|
|
||||||
# move the con outside the floating con
|
# move the con outside the floating con
|
||||||
cmd 'move before v';
|
cmd 'move up';
|
||||||
sleep 0.25;
|
sleep 0.25;
|
||||||
|
|
||||||
does_i3_live;
|
does_i3_live;
|
||||||
|
|
||||||
# move another con outside
|
# move another con outside
|
||||||
cmd '[id="' . $mid->id . '"] focus';
|
cmd '[id="' . $mid->id . '"] focus';
|
||||||
cmd 'move before v';
|
cmd 'move up';
|
||||||
sleep 0.25;
|
sleep 0.25;
|
||||||
|
|
||||||
does_i3_live;
|
does_i3_live;
|
||||||
|
|
Loading…
Reference in New Issue