[WIN32KNT_APITEST] Do not assert on the result of an unimplemented function.

svn path=/trunk/; revision=74996
This commit is contained in:
Mark Jansen 2017-06-11 08:51:36 +00:00
parent 6c7fe2fb5f
commit 7583b2b298

View file

@ -19,7 +19,9 @@ START_TEST(NtGdiEnumFontOpen)
// FIXME: We should load the font first
idEnum = NtGdiEnumFontOpen(hDC, 2, 0, 32, L"Courier", ANSI_CHARSET, &ulCount);
ASSERT(idEnum != 0);
TEST(idEnum != 0);
if (idEnum == 0)
return;
/* we should have a gdi handle here */
TEST(GDI_HANDLE_GET_TYPE(idEnum) == GDI_OBJECT_TYPE_ENUMFONT);