summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-11 20:25:10 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-11 20:25:10 +0000
commit6efd2725528d4456add7e864753bf11d33ee9c35 (patch)
treec490253c6b8c240fcf718851fbed4e38a5bc4ca8 /chrome/browser
parenta69f43a56e3e1e9a4355fc35e92dbd42a6dc972d (diff)
downloadchromium_src-6efd2725528d4456add7e864753bf11d33ee9c35.zip
chromium_src-6efd2725528d4456add7e864753bf11d33ee9c35.tar.gz
chromium_src-6efd2725528d4456add7e864753bf11d33ee9c35.tar.bz2
Increase number of tries in CheckInternetZoneIdentifier.
Hopefully this will be enough to kill flakiness. But I'm afraid it'll require some better solution in the end. TEST=ui_tests BUG=20809 Review URL: http://codereview.chromium.org/203033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26004 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/download/download_uitest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/download/download_uitest.cc b/chrome/browser/download/download_uitest.cc
index 46f212f..7e6c7e7 100644
--- a/chrome/browser/download/download_uitest.cc
+++ b/chrome/browser/download/download_uitest.cc
@@ -147,7 +147,7 @@ class DownloadTest : public UITest {
// reading a file written by a different process, using a different handle.
// Windows does not guarantee that we will get the same contents even after
// the other process closes the handle, flushes the buffers, etc.
- for (int i = 0; i < 10; i++) {
+ for (int i = 0; i < 20; i++) {
PlatformThread::Sleep(sleep_timeout_ms());
char buffer[100] = {0};