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

Unified Diff: tests/lib/async/timer_regress22626_test.dart

Issue 2075793002: Make timer test more robust. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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: tests/lib/async/timer_regress22626_test.dart
diff --git a/tests/lib/async/timer_regress22626_test.dart b/tests/lib/async/timer_regress22626_test.dart
index 483b93382f6535203107efc3dd897c39bae9cdc4..810be7cb656cec3c3dd6ee0c5f44eea57b00e4b5 100644
--- a/tests/lib/async/timer_regress22626_test.dart
+++ b/tests/lib/async/timer_regress22626_test.dart
@@ -12,7 +12,7 @@ import 'dart:async';
import 'dart:math';
import 'package:expect/expect.dart';
-int countdown = 10;
+int countdown = 5;
var rng = new Random(1234);
void test(int delay, int delta) {
@@ -31,5 +31,5 @@ void test(int delay, int delta) {
}
void main() {
- test(50, 2);
+ test(200, 2);
}
« 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