]> git.sur5r.net Git - i3/i3/commitdiff
Fixes a small mixup in the assertion description. (#2692)
authorIngo Bürk <admin@airblader.de>
Fri, 24 Feb 2017 07:36:31 +0000 (08:36 +0100)
committerMichael Stapelberg <stapelberg@users.noreply.github.com>
Fri, 24 Feb 2017 07:36:31 +0000 (23:36 -0800)
relates to PR #2649

testcases/t/192-layout.t

index 1d406fc64f0411f0ffd73a72f445f12169b739a5..c54f27a2b2d5f02cb6ae86899e960dd4864625d4 100644 (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';