comctl32/tests: Fix a typo in ok() message.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2017-12-22 17:24:04 +02:00 committed by Alexandre Julliard
parent 90273a6e81
commit 4a197cf7b0
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ static void test_Alloc(void)
/* reallocate a NULL ptr */
p = pReAlloc(NULL, 2);
ok(p != NULL, "Expectd non-NULL ptr\n");
ok(p != NULL, "Expected non-NULL ptr\n");
res = pFree(p);
ok(res == TRUE, "Expected TRUE, got %d\n", res);