diff options
Diffstat (limited to 'chrome_frame/test/test_with_web_server.cc')
-rw-r--r-- | chrome_frame/test/test_with_web_server.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome_frame/test/test_with_web_server.cc b/chrome_frame/test/test_with_web_server.cc index 9486135..003c179 100644 --- a/chrome_frame/test/test_with_web_server.cc +++ b/chrome_frame/test/test_with_web_server.cc @@ -800,8 +800,8 @@ const wchar_t kAnchorUrlNavigate[] = // http://code.google.com/p/chromium/issues/detail?id=35341 TEST_F(ChromeFrameTestWithWebServer, FLAKY_FullTabModeIE_AnchorUrlNavigateTest) { - if (!MonikerPatchEnabled()) { - LOG(ERROR) << "Not running test. Moniker patch not enabled."; + if (IsIBrowserServicePatchEnabled()) { + LOG(ERROR) << "Not running test. IBrowserServicePatch is in place."; return; } @@ -817,8 +817,8 @@ TEST_F(ChromeFrameTestWithWebServer, // Test whether POST-ing a form from an mshtml page to a CF page will cause // the request to get reissued. It should not. TEST_F(ChromeFrameTestWithWebServer, FullTabModeIE_TestPostReissue) { - if (!MonikerPatchEnabled()) { - LOG(ERROR) << "Not running test. Moniker patch not enabled."; + if (IsIBrowserServicePatchEnabled()) { + LOG(ERROR) << "Not running test. IBrowserServicePatch is in place."; return; } @@ -854,8 +854,8 @@ TEST_F(ChromeFrameTestWithWebServer, FullTabModeIE_TestPostReissue) { // Test whether following a link from an mshtml page to a CF page will cause // multiple network requests. It should not. TEST_F(ChromeFrameTestWithWebServer, FullTabModeIE_TestMultipleGet) { - if (!MonikerPatchEnabled()) { - LOG(ERROR) << "Not running test. Moniker patch not enabled."; + if (IsIBrowserServicePatchEnabled()) { + LOG(ERROR) << "Not running test. IBrowserServicePatch is in place."; return; } |