Module: wine Branch: master Commit: 8e87b9233aa8de045e0d0b568f749d4da6fa5bce URL: http://source.winehq.org/git/wine.git/?a=commit;h=8e87b9233aa8de045e0d0b568f...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Sep 18 10:27:09 2012 +0200
user32/tests: Fix coordinates in the UpdateLayeredWindow broken case.
---
dlls/user32/tests/msg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 3208751..2e4ad7d 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 );