user32/tests: Fix a typo in ok() messages.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2f5d04aaeb
commit
647ecec46d
dlls/user32/tests
|
@ -7457,7 +7457,7 @@ static void test_interthread_messages(void)
|
|||
|
||||
handle = (void*)0xdeadbeef;
|
||||
ret = pGetCurrentActCtx(&handle);
|
||||
ok(ret, "GetCurentActCtx failed: %u\n", GetLastError());
|
||||
ok(ret, "GetCurrentActCtx failed: %u\n", GetLastError());
|
||||
ok(handle == 0, "active context %p\n", handle);
|
||||
|
||||
wnd_event.start_event = CreateEventW(NULL, 0, 0, NULL);
|
||||
|
@ -7472,7 +7472,7 @@ static void test_interthread_messages(void)
|
|||
|
||||
handle = 0;
|
||||
ret = pGetCurrentActCtx(&handle);
|
||||
ok(ret, "GetCurentActCtx failed: %u\n", GetLastError());
|
||||
ok(ret, "GetCurrentActCtx failed: %u\n", GetLastError());
|
||||
ok(handle != 0, "active context %p\n", handle);
|
||||
pReleaseActCtx(handle);
|
||||
|
||||
|
|
Loading…
Reference in New Issue