From: Ingo Bürk Date: Fri, 24 Feb 2017 07:36:31 +0000 (+0100) Subject: Fixes a small mixup in the assertion description. (#2692) X-Git-Tag: 4.14~48 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=dda2ef9716c6025fdfac93d1f5a6e4fe7e252086;p=i3%2Fi3 Fixes a small mixup in the assertion description. (#2692) relates to PR #2649 --- diff --git a/testcases/t/192-layout.t b/testcases/t/192-layout.t index 1d406fc6..c54f27a2 100644 --- a/testcases/t/192-layout.t +++ b/testcases/t/192-layout.t @@ -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';