sync rostests to r44455
[reactos.git] / rostests / winetests / gdiplus / font.c
index 0da5b2f..7f33453 100644 (file)
@@ -186,7 +186,7 @@ static void test_fontfamily (void)
     WCHAR itsName[LF_FACESIZE];
     GpStatus stat;
 
-    /* FontFamily cannot be NULL */
+    /* FontFamily can not be NULL */
     stat = GdipCreateFontFamilyFromName (arial , NULL, NULL);
     expect (InvalidParameter, stat);
 
@@ -213,7 +213,7 @@ todo_wine
 
     stat = GdipGetFamilyName (family, itsName, LANG_NEUTRAL);
     expect (Ok, stat);
-    expect (0, lstrcmpiW(itsName, arial));
+    expect (0, lstrcmpiW(itsName,arial));
 
     if (0)
     {