Module: wine Branch: master Commit: 416589a7c2a7ed07345e0f1de0e0037d7fcfa341 URL: http://source.winehq.org/git/wine.git/?a=commit;h=416589a7c2a7ed07345e0f1de0...
Author: Andrew Nguyen arethusa26@gmail.com Date: Tue Feb 23 01:16:26 2010 -0600
user32/tests: Fix a failure message trace.
---
dlls/user32/tests/dialog.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/user32/tests/dialog.c b/dlls/user32/tests/dialog.c index c423f0b..ef4d5dc 100644 --- a/dlls/user32/tests/dialog.c +++ b/dlls/user32/tests/dialog.c @@ -852,8 +852,8 @@ static void InitialFocusTest (void) ok ((g_hwndInitialFocusT1 == g_hwndButton2), "Error in initial focus when WM_INITDIALOG returned TRUE: " "Expected the second button (%p), got %s (%p).\n", - g_hwndButton2, GetHwndString(g_hwndInitialFocusT2), - g_hwndInitialFocusT2); + g_hwndButton2, GetHwndString(g_hwndInitialFocusT1), + g_hwndInitialFocusT1);
ok ((g_hwndInitialFocusT2 == g_hwndButton2), "Error after first SetFocus() when WM_INITDIALOG returned TRUE: "