From f593babf6d357f4a425473077e2f38c59bf014ca Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 4 Jul 2021 15:41:02 +0200 Subject: [PATCH] user32/tests: Fix the wording of an ok() message. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- 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 469c193c1a3..9867e319d58 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -5272,7 +5272,7 @@ static void test_WM_DEVICECHANGE(HWND hwnd) ret = PostMessageA(hwnd, WM_DEVICECHANGE, wparams[i], 0); if (wparams[i] & 0x8000) { - ok(ret == FALSE, "PostMessage should returned %d\n", ret); + ok(ret == FALSE, "PostMessage returned %d\n", ret); ok(GetLastError() == ERROR_MESSAGE_SYNC_ONLY, "PostMessage error %08x\n", GetLastError()); } else