gdi32/tests: Fix the spelling of an ok() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2020-11-25 19:43:25 +01:00 committed by Alexandre Julliard
parent b344ccd857
commit c4310f6943
1 changed files with 1 additions and 1 deletions

View File

@ -5862,7 +5862,7 @@ static void test_GetGlyphOutline_character(void)
ok(ret != GDI_ERROR, "GetGlyphOutlineW failed for glyph index 0x3\n");
ret = GetGlyphOutlineW(hdc, 0xFFFF, GGO_METRICS|GGO_GLYPH_INDEX, &gm2, 0, NULL, &mat);
ok(ret == GDI_ERROR, "GetGlyphOutlineW for nonexistent glyph index 0xFFFF has succeded\n");
ok(ret == GDI_ERROR, "GetGlyphOutlineW for nonexistent glyph index 0xFFFF has succeeded\n");
ret = GetGlyphOutlineW(hdc, 0x10003, GGO_METRICS|GGO_GLYPH_INDEX, &gm2, 0, NULL, &mat);
ok(ret != GDI_ERROR, "GetGlyphOutlineW for index 0x10003 has failed\n");