From 8e87b9233aa8de045e0d0b568f749d4da6fa5bce Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 18 Sep 2012 10:27:09 +0200 Subject: [PATCH] user32/tests: Fix coordinates in the UpdateLayeredWindow broken case. --- dlls/user32/tests/msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 32087519996..2e4ad7d7fb6 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -13935,7 +13935,7 @@ static void test_layered_window(void) "wrong window rect %d,%d,%d,%d\n", rect.left, rect.top, rect.right, rect.bottom ); GetClientRect( hwnd, &rect ); ok( (rect.right == 250 && rect.bottom == 300) || - broken(rect.right == client.right - 100 && rect.bottom == client.bottom - 50), + broken(rect.right == client.right - 50 && rect.bottom == client.bottom), "wrong client rect %d,%d,%d,%d\n", rect.left, rect.top, rect.right, rect.bottom ); DestroyWindow( hwnd );