ole32/tests: Fix a test on win98 and W2K.

This commit is contained in:
Paul Vriens 2008-08-05 17:25:28 +02:00 committed by Alexandre Julliard
parent 67a5f256c4
commit d46f93669d
1 changed files with 1 additions and 2 deletions

View File

@ -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);