Commit 256fb405 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

Fix protocol test on winxp.

parent 7be2cd97
......@@ -70,8 +70,8 @@ static HRESULT WINAPI ProtocolSink_ReportProgress(IInternetProtocolSink *iface,
static const WCHAR text_html[] = {'t','e','x','t','/','h','t','m','l',0};
ok(expect_ReportProgress, "unexpected call\n");
ok(ulStatusCode == BINDSTATUS_MIMETYPEAVAILABLE,
"ulStatusCode=%ld expected BINDSTATUS_MIMETYPEAVAILABLE\n", ulStatusCode);
ok(ulStatusCode == BINDSTATUS_MIMETYPEAVAILABLE
|| ulStatusCode == BINDSTATUS_VERFIEDMIMETYPEAVAILABLE, "ulStatusCode=%ld\n", ulStatusCode);
ok(!lstrcmpW(szStatusText, text_html), "szStatusText != text/html\n");
expect_ReportProgress = FALSE;
called_ReportProgress = TRUE;
......
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