urlmon/tests: Clarify ok() condition.

This commit is contained in:
André Hentschel 2014-10-25 16:35:31 +02:00 committed by Alexandre Julliard
parent cbc8d290b9
commit 2bb59197ac
1 changed files with 1 additions and 1 deletions

View File

@ -764,7 +764,7 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
}
IHttpNegotiate2_Release(http_negotiate2);
ok(hres == E_FAIL, "GetRootSecurityId failed: %08x, expected E_FAIL\n", hres);
ok(size == no_callback ? 512 : 13, "size=%d\n", size);
ok(size == (no_callback ? 512 : 13), "size=%d\n", size);
if(!no_callback) {
SET_EXPECT(QueryService_IHttpSecurity);