]> git.sur5r.net Git - i3/i3/commitdiff
tests: fix t/31-stacking-order.t: don’t get focus on workspace level, use get_focused()
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 28 Nov 2010 20:28:44 +0000 (21:28 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 28 Nov 2010 20:28:44 +0000 (21:28 +0100)
testcases/t/31-stacking-order.t

index 747d5b577a4a09ef38ca3ac653758b491162a659..3335cba78174d29344e78cbcd9b99d5c97f9a5a2 100644 (file)
@@ -28,16 +28,13 @@ isnt($first, $second, 'two different containers opened');
 ##############################################################
 
 $i3->command('layout stacking')->recv;
-my ($nodes, $focus) = get_ws_content($tmp);
-is($focus->[0], $second, 'second container still focused');
+is(get_focused($tmp), $second, 'second container still focused');
 
 $i3->command('next v')->recv;
-($nodes, $focus) = get_ws_content($tmp);
-is($focus->[0], $first, 'first container focused');
+is(get_focused($tmp), $first, 'first container focused');
 
 $i3->command('prev v')->recv;
-($nodes, $focus) = get_ws_content($tmp);
-is($focus->[0], $second, 'second container focused again');
+is(get_focused($tmp), $second, 'second container focused again');
 
 ##############################################################
 # now change the orientation to horizontal and cycle
@@ -48,12 +45,10 @@ $i3->command('split h')->recv;
 $i3->command('level down')->recv;
 
 $i3->command('next v')->recv;
-($nodes, $focus) = get_ws_content($tmp);
-is($focus->[0], $first, 'first container focused');
+is(get_focused($tmp), $first, 'first container focused');
 
 $i3->command('prev v')->recv;
-($nodes, $focus) = get_ws_content($tmp);
-is($focus->[0], $second, 'second container focused again');
+is(get_focused($tmp), $second, 'second container focused again');
 
 
 diag( "Testing i3, Perl $], $^X" );