user32/tests/static: remove win9x hack

Austin English austinenglish at gmail.com
Tue Jul 26 21:16:02 CDT 2011


On Tue, Jul 26, 2011 at 19:13, Austin English <austinenglish at gmail.com> wrote:
> https://testbot.winehq.org/JobDetails.pl?Key=12910
>
> --
> -Austin
>



-- 
-Austin
-------------- next part --------------
diff --git a/dlls/user32/tests/static.c b/dlls/user32/tests/static.c
index d04f725..b761356 100644
--- a/dlls/user32/tests/static.c
+++ b/dlls/user32/tests/static.c
@@ -95,9 +95,7 @@ static void test_updates(int style, int flags)
     if (flags & TODO_COUNT)
         todo_wine { expect_eq(g_nReceivedColorStatic, exp, int, "%d"); }
     else if ((style & SS_TYPEMASK) == SS_ICON || (style & SS_TYPEMASK) == SS_BITMAP)
-        ok( g_nReceivedColorStatic == exp ||
-            broken(g_nReceivedColorStatic == 0), /* win9x */
-            "expected %u got %u\n", exp, g_nReceivedColorStatic );
+        ok( g_nReceivedColorStatic == exp, "expected %u got %u\n", exp, g_nReceivedColorStatic );
     else
         expect_eq(g_nReceivedColorStatic, exp, int, "%d");
     DestroyWindow(hStatic);


More information about the wine-patches mailing list