]> git.sur5r.net Git - i3/i3/commitdiff
i3test.pm: use strict; use warnings; and fix related bugs
authorMaik Fischer <maikf@qu.cx>
Tue, 11 Oct 2011 12:13:42 +0000 (13:13 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 12 Oct 2011 21:21:57 +0000 (22:21 +0100)
testcases/lib/i3test.pm
testcases/t/135-floating-focus.t

index 9b7cc13809944448c9b4af56569cf9b240a81633..39fd7a94e05195cd6ee985ce7e16b62e3b95cc29 100644 (file)
@@ -1,5 +1,6 @@
 package i3test;
 # vim:ts=4:sw=4:expandtab
+use strict; use warnings;
 
 use File::Temp qw(tmpnam tempfile tempdir);
 use Test::Builder;
@@ -243,7 +244,7 @@ sub get_focused {
         $lf = $focused[0];
         last unless defined($con->{focus});
         @focused = @{$con->{focus}};
-        @cons = grep { $_->{id} == $lf } (@{$con->{nodes}}, @{$con->{'floating_nodes'}});
+        my @cons = grep { $_->{id} == $lf } (@{$con->{nodes}}, @{$con->{'floating_nodes'}});
         $con = $cons[0];
     }
 
index 4c5b562ff12ef21a40ca6df520baaf25bcdffaf6..a1ab211e501d59531bb50e8cb8d86a4bf91cc008 100644 (file)
@@ -62,9 +62,9 @@ is($x->input_focus, $second->id, 'second con still focused after killing third')
 
 $tmp = fresh_workspace;
 
-$first = open_window($x, '#ff0000');    # window 5
-$second = open_window($x, '#00ff00');   # window 6
-my $third = open_window($x, '#0000ff'); # window 7
+$first = open_window($x, { background_color => '#ff0000' });    # window 5
+$second = open_window($x, { background_color => '#00ff00' });   # window 6
+my $third = open_window($x, { background_color => '#0000ff' }); # window 7
 
 is($x->input_focus, $third->id, 'last container focused');