| Index: tests/language_strong/fixed_length_test.dart
 | 
| diff --git a/tests/language_strong/fixed_length_test.dart b/tests/language_strong/fixed_length_test.dart
 | 
| index 6d0d85d56179a673ed8f0e300b666a70308f2282..97a93f07eadae7b700e06e44c4b811a805e13b79 100644
 | 
| --- a/tests/language_strong/fixed_length_test.dart
 | 
| +++ b/tests/language_strong/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];
 | 
|        }
 | 
| 
 |