gdi32/tests: Fix a test failure on NT4.

This commit is contained in:
Paul Vriens 2009-04-23 16:07:25 +02:00 committed by Alexandre Julliard
parent 6376941266
commit 05c50725db
1 changed files with 3 additions and 1 deletions

View File

@ -161,7 +161,9 @@ static void test_world_transform(void)
xform.eDx = 0.0f;
xform.eDy = 0.0f;
ret = SetWorldTransform(hdc, &xform);
ok(!ret, "SetWorldTransform should fail with an invalid xform\n");
ok(!ret ||
broken(ret), /* NT4 */
"SetWorldTransform should fail with an invalid xform\n");
xform.eM11 = 20.0f;
xform.eM12 = 0.0f;