]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: testcase was still using 'mode floating' instead of 'floating enable'
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 30 Jun 2011 22:37:30 +0000 (00:37 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 30 Jun 2011 22:37:30 +0000 (00:37 +0200)
testcases/t/35-floating-focus.t

index d037b9db410ed776b7ba7cca97f078b1f85c5286..d0f8814ff6573cd203e08badd358f1baa63850e2 100644 (file)
@@ -18,8 +18,8 @@ my $second = open_standard_window($x);
 
 is($x->input_focus, $second->id, 'second window focused');
 
-cmd 'mode floating';
-cmd 'mode tiling';
+cmd 'floating enable';
+cmd 'floating disable';
 
 is($x->input_focus, $second->id, 'second window still focused after mode toggle');
 
@@ -36,13 +36,13 @@ my $third = open_standard_window($x); # window 4
 
 is($x->input_focus, $third->id, 'last container focused');
 
-cmd 'mode floating';
+cmd 'floating enable';
 
 cmd '[id="' . $second->id . '"] focus';
 
 is($x->input_focus, $second->id, 'second con focused');
 
-cmd 'mode floating';
+cmd 'floating enable';
 
 # now kill the third one (it's floating). focus should stay unchanged
 cmd '[id="' . $third->id . '"] kill';
@@ -65,13 +65,13 @@ my $third = open_standard_window($x); # window 7
 
 is($x->input_focus, $third->id, 'last container focused');
 
-cmd 'mode floating';
+cmd 'floating enable';
 
 cmd '[id="' . $second->id . '"] focus';
 
 is($x->input_focus, $second->id, 'second con focused');
 
-cmd 'mode floating';
+cmd 'floating enable';
 
 # now kill the second one. focus should fall back to the third one, which is
 # also floating