Get rid of references to level up/down.

In v4 syntax, that's focus parent/child.
This commit is contained in:
Fernando Tarlá Cardoso Lemos
2012-05-27 01:44:29 -03:00
committed by Michael Stapelberg
parent 04b5ec8165
commit 485871ffdd
4 changed files with 8 additions and 8 deletions

View File

@ -22,10 +22,10 @@ my ($nodes, $focus) = get_ws_content($tmp);
is($nodes->[0]->{focused}, 0, 'split container not focused');
# focus the split container
cmd 'level up';
cmd 'focus parent';
($nodes, $focus) = get_ws_content($tmp);
my $split = $focus->[0];
cmd 'level down';
cmd 'focus child';
$second = open_empty_con($i3);
@ -60,10 +60,10 @@ cmd 'split v';
is($nodes->[0]->{focused}, 0, 'split container not focused');
# focus the split container
cmd 'level up';
cmd 'focus parent';
($nodes, $focus) = get_ws_content($tmp);
$split = $focus->[0];
cmd 'level down';
cmd 'focus child';
$second = open_empty_con($i3);