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

Unified Diff: tests/language/index_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/index_test.dart
diff --git a/tests/language/index_test.dart b/tests/language/index_test.dart
index 2fd48d1c7ee0bac4d7b21f4c7fcd4f8cd93acef3..bf9ab92d24553b83f3e799e197e79b18de710595 100644
--- a/tests/language/index_test.dart
+++ b/tests/language/index_test.dart
@@ -27,7 +27,7 @@ class IndexTest {
}
a[ID_IDLE] = Helper.fibonacci(0);
for (int i = 2; i < a.length; i++) {
- Expect.equals(a[i-2] + a[i-1], a[i]);
+ Expect.equals(a[i - 2] + a[i - 1], a[i]);
}
Expect.equals(515, a[3] = 515);
}

Powered by Google App Engine
This is Rietveld 408576698