tests: Use hex color codes for background_color

This commit is contained in:
Michael Stapelberg
2009-08-21 16:06:12 +02:00
parent 4a83bd26f8
commit 32532792cd
7 changed files with 8 additions and 11 deletions

View File

@ -20,8 +20,7 @@ my $original_rect = X11::XCB::Rect->new(x => 0, y => 0, width => 30, height => 3
my $window = X11::XCB::Window->new(
class => WINDOW_CLASS_INPUT_OUTPUT,
rect => $original_rect,
#override_redirect => 1,
background_color => 12632256
background_color => '#C0C0C0',
);
isa_ok($window, 'X11::XCB::Window');