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

Unified Diff: tests/language/fixed_length_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/fixed_length_test.dart
diff --git a/tests/language/fixed_length_test.dart b/tests/language/fixed_length_test.dart
index 6d0d85d56179a673ed8f0e300b666a70308f2282..97a93f07eadae7b700e06e44c4b811a805e13b79 100644
--- a/tests/language/fixed_length_test.dart
+++ b/tests/language/fixed_length_test.dart
@@ -13,10 +13,10 @@ void main() {
int foo() {
var list = new List<int>(1024);
- for(int i = 0; i < list.length; i++) list[i] = -i;
+ for (int i = 0; i < list.length; i++) list[i] = -i;
- for(int n = list.length; n > 1; n--) {
- for(int i = 0; i < n - 1; i++) {
+ for (int n = list.length; n > 1; n--) {
+ for (int i = 0; i < n - 1; i++) {
if (list[i] > list[i + 1]) {
return list[i + 1];
}

Powered by Google App Engine
This is Rietveld 408576698