[PATCH] Correct AssocCreate Tests

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Tue Aug 4 23:19:38 CDT 2009


---
 dlls/shlwapi/tests/assoc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/shlwapi/tests/assoc.c b/dlls/shlwapi/tests/assoc.c
index fd2b868..a6f5e2d 100644
--- a/dlls/shlwapi/tests/assoc.c
+++ b/dlls/shlwapi/tests/assoc.c
@@ -252,11 +252,11 @@ static void test_assoc_create(void)
     ok(hr == E_INVALIDARG, "Unexpected result : %08x\n", hr);
 
     hr = pAssocCreate(CLSID_QueryAssociations, &IID_NULL, (LPVOID*)&pqa);
-    ok(hr == CLASS_E_CLASSNOTAVAILABLE || hr == E_NOTIMPL /* win98 */
+    ok(hr == CLASS_E_CLASSNOTAVAILABLE || hr == E_NOTIMPL || hr == E_NOINTERFACE
         , "Unexpected result : %08x\n", hr);
 
     hr = pAssocCreate(IID_NULL, &IID_IQueryAssociations, (LPVOID*)&pqa);
-    ok(hr == CLASS_E_CLASSNOTAVAILABLE || hr == E_NOTIMPL /* win98 */
+    ok(hr == CLASS_E_CLASSNOTAVAILABLE || hr == E_NOTIMPL || hr == E_INVALIDARG
         , "Unexpected result : %08x\n", hr);
 
     hr = pAssocCreate(CLSID_QueryAssociations, &IID_IQueryAssociations, (LPVOID*)&pqa);
-- 
1.5.4.3


--------------060608070200090602010706--



More information about the wine-patches mailing list