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

Unified Diff: pkg/watcher/test/no_subscription_test.dart

Issue 26398002: Bump wait time for watcher test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/watcher/test/no_subscription_test.dart
diff --git a/pkg/watcher/test/no_subscription_test.dart b/pkg/watcher/test/no_subscription_test.dart
index d0a396ac4e1d4d4619fff817a5ec9836cbb20c30..2e7b6d3ffe44cafb9ae1ecc93630c3abf7e6ec52 100644
--- a/pkg/watcher/test/no_subscription_test.dart
+++ b/pkg/watcher/test/no_subscription_test.dart
@@ -57,7 +57,10 @@ main() {
// its pause between polling loops. That means the second scan to skip
// what changed while we were unsubscribed won't happen until after that
// delay is done. Wait long enough for that to happen.
- schedule(() => new Future.delayed(watcher.pollingDelay * 2));
+ //
+ // We're doing * 4 here because that seems to give the slower bots enough
+ // time for this to complete.
+ schedule(() => new Future.delayed(watcher.pollingDelay * 4));
// And add a third file.
writeFile("added.txt");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698