[APITESTS][WIN32KNT_APITEST] Improve NtGdiGetFontResourceInfoInternalW testcase (#1290)

Use ok macro instead of obsolete TEST macro.
This commit is contained in:
Katayama Hirofumi MZ 2019-01-22 21:12:19 +09:00 committed by GitHub
parent 377734c9ec
commit 8fa1a24edc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ START_TEST(NtGdiGetFontResourceInfoInternalW)
&logfont,
2);
TEST(bRet != FALSE);
ok(bRet != FALSE, "bRet was not FALSE.\n");
printf("lfHeight = %ld\n", logfont.lfHeight);
printf("lfWidth = %ld\n", logfont.lfWidth);
@ -40,4 +40,3 @@ START_TEST(NtGdiGetFontResourceInfoInternalW)
// RemoveFontResourceW(szFullFileName);
}