user32/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 2016-05-22 12:54:02 +03:00 committed by Alexandre Julliard
parent 92890ac993
commit 5a0596ed10
1 changed files with 1 additions and 1 deletions

View File

@ -1672,7 +1672,7 @@ static void test_text_position_style(DWORD style)
/* Get a stock font for which we can determine the metrics */
font = GetStockObject(SYSTEM_FONT);
ok (font != NULL, "GetStockObjcet SYSTEM_FONT failed\n");
ok (font != NULL, "GetStockObject SYSTEM_FONT failed\n");
dc = GetDC(NULL);
ok (dc != NULL, "GetDC() failed\n");
oldFont = SelectObject(dc, font);