Francois Gouget : gdi32/tests: Fix the spelling of an ok() message.
Module: wine Branch: master Commit: c4310f694398f14788f16b3ffda1b60683b4dfaf URL: https://source.winehq.org/git/wine.git/?a=commit;h=c4310f694398f14788f16b3ff... Author: Francois Gouget <fgouget(a)free.fr> Date: Wed Nov 25 19:43:25 2020 +0100 gdi32/tests: Fix the spelling of an ok() message. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/gdi32/tests/font.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/gdi32/tests/font.c b/dlls/gdi32/tests/font.c index d3ec971dce0..94910ff60fc 100644 --- a/dlls/gdi32/tests/font.c +++ b/dlls/gdi32/tests/font.c @@ -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");
participants (1)
-
Alexandre Julliard