Module: wine Branch: master Commit: 1c010e77cf1a9b5692cb001ae211dea564e72b34 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1c010e77cf1a9b5692cb001ae2...
Author: James Hawkins jhawkins@codeweavers.com Date: Mon Sep 8 22:12:48 2008 -0500
urlmon: Fix a failing test with IE7.
---
dlls/urlmon/tests/protocol.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/urlmon/tests/protocol.c b/dlls/urlmon/tests/protocol.c index d503721..b986dfc 100644 --- a/dlls/urlmon/tests/protocol.c +++ b/dlls/urlmon/tests/protocol.c @@ -350,7 +350,8 @@ static HRESULT WINAPI ProtocolSink_Switch(IInternetProtocolSink *iface, PROTOCOL CHECK_CALLED(ReportProgress_CONNECTING); } else todo_wine { CHECK_NOT_CALLED(ReportProgress_FINDINGRESOURCE); - CHECK_NOT_CALLED(ReportProgress_CONNECTING); + /* IE7 does call this */ + CLEAR_CALLED(ReportProgress_CONNECTING); } CHECK_CALLED(ReportProgress_SENDINGREQUEST); SET_EXPECT(OnResponse);