From d46f93669d043dd7d294390a621a3c5d72cd3502 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Tue, 5 Aug 2008 17:25:28 +0200 Subject: [PATCH] ole32/tests: Fix a test on win98 and W2K. --- dlls/ole32/tests/ole2.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/ole32/tests/ole2.c b/dlls/ole32/tests/ole2.c index 5ca600945cc..cc3476d60f7 100644 --- a/dlls/ole32/tests/ole2.c +++ b/dlls/ole32/tests/ole2.c @@ -844,9 +844,8 @@ static void test_OleLoad(IStorage *pStorage) trace("OleLoad:\n"); hr = OleLoad(pStorage, &IID_IOleObject, (IOleClientSite *)0xdeadbeef, (void **)&pObject); ok(hr == S_OK || - broken(hr == E_INVALIDARG), /* win2k */ + broken(hr == E_INVALIDARG), /* win98 and win2k */ "OleLoad failed with error 0x%08x\n", hr); - ok_ole_success(hr, "OleLoad"); if (pObject) { IOleObject_Release(pObject);