]> git.sur5r.net Git - i3/i3/commitdiff
tests: don’t skip t/10-dock.t, make it work again
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 20 Feb 2011 22:50:01 +0000 (23:50 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 20 Feb 2011 22:50:01 +0000 (23:50 +0100)
testcases/t/10-dock.t

index f53626a54a1496cf50bbf47f10c38f395c9676e4..66a05b26cecab488dec9c95ce9030595abb4841f 100644 (file)
@@ -10,9 +10,6 @@ BEGIN {
     use_ok('X11::XCB::Connection') or BAIL_OUT('Cannot load X11::XCB::Connection');
 }
 
-SKIP: {
-    skip "Dock clients not yet implemented", 1;
-
 my $x = X11::XCB::Connection->new;
 
 #####################################################################
@@ -30,7 +27,7 @@ my $window = $x->root->create_child(
     class => WINDOW_CLASS_INPUT_OUTPUT,
     rect => [ 0, 0, 30, 30],
     background_color => '#FF0000',
-    type => $x->atom(name => '_NET_WM_WINDOW_TYPE_DOCK'),
+    window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_DOCK'),
 );
 
 $window->map;
@@ -44,7 +41,7 @@ my $fwindow = $x->root->create_child(
     class => WINDOW_CLASS_INPUT_OUTPUT,
     rect => [ 0, 0, 30, 30],
     background_color => '#FF0000',
-    type => $x->atom(name => '_NET_WM_WINDOW_TYPE_DOCK'),
+    window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_DOCK'),
 );
 
 $fwindow->transient_for($window);
@@ -54,4 +51,3 @@ sleep 0.25;
 
 
 diag( "Testing i3, Perl $], $^X" );
-}