Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Unified Diff: chrome/test/functional/downloads.py

Issue 10900010: Remove DownloadFileManager in favor of direct ownership of DownloadFiles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed race conditions and fixed a bug in downloads.py. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/functional/downloads.py
diff --git a/chrome/test/functional/downloads.py b/chrome/test/functional/downloads.py
index 5efd799c5d91f177bafd67bc886bb1c90ea9f84c..432e5f5db1e37839e4f6c8256858381bf7695728 100755
--- a/chrome/test/functional/downloads.py
+++ b/chrome/test/functional/downloads.py
@@ -369,7 +369,7 @@ class DownloadsTest(pyauto.PyUITest):
resume_dict = self.PerformActionOnDownload(self._GetDownloadId(),
'toggle_pause')
self.assertFalse(resume_dict['is_paused'])
- self.WaitForAllDownloadsToComplete(timeout=self.large_test_timeout_ms());
+ self.WaitForAllDownloadsToComplete(timeout=10 * 60 * 1000);
# Verify that the file was correctly downloaded after pause and resume.
self.assertTrue(os.path.exists(downloaded_pkg),

Powered by Google App Engine
This is Rietveld 408576698