wmp/tests: Fixed tests on old WMP versions.

This commit is contained in:
Jacek Caban 2014-02-20 16:01:33 +01:00 committed by Alexandre Julliard
parent f41f8af021
commit 89c5cefb25
1 changed files with 1 additions and 1 deletions

View File

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