summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-16 19:36:21 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-16 19:36:21 +0000
commite65d66a8106ed30a4277ef31baef24e4c6b05672 (patch)
tree089d192a2027cb25a89f13795a58ad1baabd4477 /chrome_frame
parent18ecd00469449154eb2887dd84652d595618df1d (diff)
downloadchromium_src-e65d66a8106ed30a4277ef31baef24e4c6b05672.zip
chromium_src-e65d66a8106ed30a4277ef31baef24e4c6b05672.tar.gz
chromium_src-e65d66a8106ed30a4277ef31baef24e4c6b05672.tar.bz2
Fix the ChromeFrame FullTabModeIE_TestDownloadFromForm test flakiness on IE9.
TBR=amit Review URL: http://codereview.chromium.org/4980004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66311 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r--chrome_frame/test/test_with_web_server.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome_frame/test/test_with_web_server.cc b/chrome_frame/test/test_with_web_server.cc
index 904ae52..9c4b761 100644
--- a/chrome_frame/test/test_with_web_server.cc
+++ b/chrome_frame/test/test_with_web_server.cc
@@ -1240,9 +1240,11 @@ TEST_F(ChromeFrameTestWithWebServer, FullTabModeIE_TestDownloadFromForm) {
};
EXPECT_CALL(win_observer_mock, OnWindowOpen(_))
+ .Times(testing::AtMost(1))
.WillOnce(chrome_frame_test::DoCloseWindow());
EXPECT_CALL(win_observer_mock, OnWindowClose(_))
+ .Times(testing::AtMost(1))
.WillOnce(QUIT_LOOP(loop_));
SimpleWebServerTest server(46664);