From 6f9bc0e872d998d74d6102c7693d0739dad55535 Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Mon, 13 Feb 2017 09:56:35 +0000 Subject: [PATCH] [WIN32KNT_APITEST]: Make a test for NtUserGetClassInfo more strict to test its exact return value. svn path=/trunk/; revision=73786 --- rostests/apitests/win32nt/ntuser/NtUserCreateWindowEx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rostests/apitests/win32nt/ntuser/NtUserCreateWindowEx.c b/rostests/apitests/win32nt/ntuser/NtUserCreateWindowEx.c index d8d153350ec..45d9ea6fe3e 100644 --- a/rostests/apitests/win32nt/ntuser/NtUserCreateWindowEx.c +++ b/rostests/apitests/win32nt/ntuser/NtUserCreateWindowEx.c @@ -213,7 +213,7 @@ START_TEST(NtUserCreateWindowEx) TEST(res.hIconSm == wclex.hIconSm); /* Get versioned class info */ - TEST(NtUserGetClassInfo(hinst, &ver_cls, &res, &pwstr, 0) != 0); + TEST(NtUserGetClassInfo(hinst, &ver_cls, &res, &pwstr, 0) == atom2); TEST(GetLastError() == 0); TEST(res.cbSize == wclex2.cbSize); TEST(res.style == wclex2.style); -- 2.17.1