]> git.sur5r.net Git - i3/i3/commitdiff
bugfix: need to use window_type instead of type in t/04-floating.t
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 12 Nov 2010 19:36:37 +0000 (20:36 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 12 Nov 2010 19:36:37 +0000 (20:36 +0100)
testcases/t/04-floating.t

index 4463bcbeab352c46eb3ba7af1189bd654b934383..9607b2e2d7c7921c257dac4b4e3e2305b85d752f 100644 (file)
@@ -17,7 +17,7 @@ my $window = $x->root->create_child(
     rect => [ 0, 0, 30, 30],
     background_color => '#C0C0C0',
     # replace the type with 'utility' as soon as the coercion works again in X11::XCB
-    type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
+    window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
 );
 
 isa_ok($window, 'X11::XCB::Window');
@@ -40,7 +40,7 @@ $window = $x->root->create_child(
     class => WINDOW_CLASS_INPUT_OUTPUT,
     rect => [ 1, 1, 80, 90],
     background_color => '#C0C0C0',
-    type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
+    window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
 );
 
 isa_ok($window, 'X11::XCB::Window');