Commit bf8eb249 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

kernel32/tests: Fix typos in ok() messages.

parent 169c3879
...@@ -1012,8 +1012,8 @@ static VOID test_GetCurrentThreadStackLimits(void) ...@@ -1012,8 +1012,8 @@ static VOID test_GetCurrentThreadStackLimits(void)
} }
pGetCurrentThreadStackLimits(&low, &high); pGetCurrentThreadStackLimits(&low, &high);
ok(low == (ULONG_PTR)NtCurrentTeb()->DeallocationStack, "exptected %p, got %lx\n", NtCurrentTeb()->DeallocationStack, low); ok(low == (ULONG_PTR)NtCurrentTeb()->DeallocationStack, "expected %p, got %lx\n", NtCurrentTeb()->DeallocationStack, low);
ok(high == (ULONG_PTR)NtCurrentTeb()->Tib.StackBase, "exptected %p, got %lx\n", NtCurrentTeb()->Tib.StackBase, high); ok(high == (ULONG_PTR)NtCurrentTeb()->Tib.StackBase, "expected %p, got %lx\n", NtCurrentTeb()->Tib.StackBase, high);
} }
static VOID test_GetThreadExitCode(void) static VOID test_GetThreadExitCode(void)
......
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