Commit 2f5d04aa authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

kernel32/tests: Fix a typo in ok() messages.

parent b9bbce9c
......@@ -1644,7 +1644,7 @@ static void test_thread_actctx(void)
handle = (void*)0xdeadbeef;
b = pGetCurrentActCtx(&handle);
ok(b, "GetCurentActCtx failed: %u\n", GetLastError());
ok(b, "GetCurrentActCtx failed: %u\n", GetLastError());
ok(handle == 0, "active context %p\n", handle);
/* without active context */
......@@ -1663,7 +1663,7 @@ static void test_thread_actctx(void)
handle = 0;
b = pGetCurrentActCtx(&handle);
ok(b, "GetCurentActCtx failed: %u\n", GetLastError());
ok(b, "GetCurrentActCtx failed: %u\n", GetLastError());
ok(handle != 0, "no active context\n");
pReleaseActCtx(handle);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment