| 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");
|
|
|