Commit ed059e11 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus/tests: Reject gdiplus versions greater than 2.

parent eb2c74d5
......@@ -53,7 +53,7 @@ static void test_startup(void)
}
}
ok(gpversion > 0 && gpversion < 42, "unexpected gdiplus version %i\n", gpversion);
ok(gpversion > 0 && gpversion <= 2, "unexpected gdiplus version %i\n", gpversion);
trace("gdiplus version is %i\n", gpversion);
status = GdipCreatePen1((ARGB)0xffff00ff, 10.0f, UnitPixel, &pen);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment