Fixes a small mixup in the assertion description. (#2692)

relates to PR #2649
next
Ingo Bürk 2017-02-24 08:36:31 +01:00 committed by Michael Stapelberg
parent c474ddd782
commit dda2ef9716
1 changed files with 2 additions and 2 deletions

View File

@ -122,11 +122,11 @@ is($nodes->[1]->{layout}, 'stacked', 'layout now stacked');
cmd 'layout toggle stacked';
($nodes, $focus) = get_ws_content($tmp);
# this is correct if it does nothing
is($nodes->[1]->{layout}, 'stacked', 'layout now tabbed');
is($nodes->[1]->{layout}, 'stacked', 'layout now stacked');
cmd 'layout toggle tabbed stacked';
($nodes, $focus) = get_ws_content($tmp);
is($nodes->[1]->{layout}, 'tabbed', 'layout now stacked');
is($nodes->[1]->{layout}, 'tabbed', 'layout now tabbed');
# obsoletes 'split' ;)
cmd 'layout toggle splith splitv';