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

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

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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: tests/lib/async/multiple_timer_test.dart
diff --git a/tests/lib/async/multiple_timer_test.dart b/tests/lib/async/multiple_timer_test.dart
index 00580b99b4605594efdf0e713bacf4849061e0d7..9dc04bb9c5f6c4de6c44e70a462183fbf28e9a60 100644
--- a/tests/lib/async/multiple_timer_test.dart
+++ b/tests/lib/async/multiple_timer_test.dart
@@ -29,28 +29,28 @@ main() {
void timeoutHandler1() {
expect(_stopwatch1.elapsedMilliseconds + safetyMargin,
- greaterThanOrEqualTo(TIMEOUT1.inMilliseconds));
+ greaterThanOrEqualTo(TIMEOUT1.inMilliseconds));
expect(_order[_message], 0);
_message++;
}
void timeoutHandler2() {
expect(_stopwatch2.elapsedMilliseconds + safetyMargin,
- greaterThanOrEqualTo(TIMEOUT2.inMilliseconds));
+ greaterThanOrEqualTo(TIMEOUT2.inMilliseconds));
expect(_order[_message], 1);
_message++;
}
void timeoutHandler3() {
expect(_stopwatch3.elapsedMilliseconds + safetyMargin,
- greaterThanOrEqualTo(TIMEOUT3.inMilliseconds));
+ greaterThanOrEqualTo(TIMEOUT3.inMilliseconds));
expect(_order[_message], 2);
_message++;
}
void timeoutHandler4() {
expect(_stopwatch4.elapsedMilliseconds + safetyMargin,
- greaterThanOrEqualTo(TIMEOUT4.inMilliseconds));
+ greaterThanOrEqualTo(TIMEOUT4.inMilliseconds));
expect(_order[_message], 3);
_message++;
}

Powered by Google App Engine
This is Rietveld 408576698