urlmon: Fixed some tests on IE11.

This commit is contained in:
Jacek Caban 2014-02-24 11:09:54 +01:00 committed by Alexandre Julliard
parent 563486b555
commit 2b04a5e3ff
1 changed files with 2 additions and 2 deletions

View File

@ -1385,7 +1385,7 @@ static HRESULT WINAPI BindInfo_GetBindString(IInternetBindInfo *iface, ULONG ulS
return S_OK;
}
default:
ok(0, "unexpected call\n");
ok(0, "unexpected ulStringType %d\n", ulStringType);
}
return E_NOTIMPL;
@ -3638,7 +3638,7 @@ static void test_binding(int prot, DWORD grf_pi, DWORD test_flags)
CHECK_CALLED(QueryService_InternetProtocol);
CHECK_CALLED(CreateInstance);
CHECK_CALLED(ReportProgress_PROTOCOLCLASSID);
CHECK_CALLED(SetPriority);
CLEAR_CALLED(SetPriority); /* IE11 does not call it. */
if(impl_protex)
CHECK_CALLED(StartEx);
else