1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/t/core_surface.t b/t/core_surface.t
index 897536b6..baa962aa 100644
--- a/t/core_surface.t
+++ b/t/core_surface.t
@@ -51,7 +51,7 @@ is( $image->h, 32, 'image has height' );
my $pixel_format = $image->format;
isa_ok( $pixel_format, 'SDL::PixelFormat' );
-is( $pixel_format->BitsPerPixel, 8, ' BitsPerPixel' );
+is( $pixel_format->BitsPerPixel, 4, ' BitsPerPixel' );
is( $pixel_format->BytesPerPixel, 1, ' BytesPerPixel' );
is( $pixel_format->Rloss, 8, ' Rloss' );
is( $pixel_format->Gloss, 8, ' Gloss' );
|