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

Unified Diff: tests/corelib/stopwatch_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/corelib/stopwatch_test.dart
diff --git a/tests/corelib/stopwatch_test.dart b/tests/corelib/stopwatch_test.dart
index 28ec48b10ca77d6d937bd51ed1ba3826c164c3e1..e6b8a97982120223a83823a909316e7c4e995918 100644
--- a/tests/corelib/stopwatch_test.dart
+++ b/tests/corelib/stopwatch_test.dart
@@ -5,6 +5,7 @@
// Dart test program for testing stopwatch support.
library stopwatch_test;
+
import "package:expect/expect.dart";
class StopwatchTest {
@@ -25,8 +26,8 @@ class StopwatchTest {
sw.stop();
Expect.isFalse(sw.isRunning);
int v1 = sw.elapsedTicks;
- Expect.isTrue(v1 > 0); // Expect a non-zero elapsed time.
- Stopwatch sw2 = new Stopwatch(); // Used for verification.
+ Expect.isTrue(v1 > 0); // Expect a non-zero elapsed time.
+ Stopwatch sw2 = new Stopwatch(); // Used for verification.
sw2.start();
Expect.isTrue(sw2.isRunning);
int sw2LastElapsed = 0;

Powered by Google App Engine
This is Rietveld 408576698