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

Unified Diff: tests/language/loop_exchange3_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/language/loop_exchange3_test.dart
diff --git a/tests/language/loop_exchange3_test.dart b/tests/language/loop_exchange3_test.dart
index d0cbb0f5bf9921053a2086505185a8a741d44006..c621da178b7f3b7851fd87ba12732aa9d5d71ec1 100644
--- a/tests/language/loop_exchange3_test.dart
+++ b/tests/language/loop_exchange3_test.dart
@@ -8,7 +8,7 @@ import "package:expect/expect.dart";
main() {
int foo;
for (var i = 0; i < 10; foo = i, i++) {
- if(i > 0) {
+ if (i > 0) {
Expect.equals(i - 1, foo);
}
}

Powered by Google App Engine
This is Rietveld 408576698