Commit 89c5cefb authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wmp/tests: Fixed tests on old WMP versions.

parent f41f8af0
......@@ -692,7 +692,7 @@ static void test_wmp(void)
client_site = (void*)0xdeadbeef;
hres = IOleObject_GetClientSite(oleobj, &client_site);
ok(hres == E_FAIL, "GetClientSite failed: %08x\n", hres);
ok(hres == E_FAIL || broken(hres == S_OK), "GetClientSite failed: %08x\n", hres);
ok(!client_site, "client_site = %p\n", client_site);
ref = IOleObject_Release(oleobj);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment