| Index: tests/compiler/dart2js/unparser_test.dart
|
| diff --git a/tests/compiler/dart2js/unparser_test.dart b/tests/compiler/dart2js/unparser_test.dart
|
| index 50845fb50a09fc33e77ee4b6f45dd75efe9af568..e64c27f958fae46855c27bc3b3da27063e38171b 100644
|
| --- a/tests/compiler/dart2js/unparser_test.dart
|
| +++ b/tests/compiler/dart2js/unparser_test.dart
|
| @@ -99,8 +99,8 @@ testGenericTypes() {
|
| }
|
|
|
| testForLoop() {
|
| - testUnparse('for(;i<100;i++){}');
|
| - testUnparse('for(i=0;i<100;i++){}');
|
| + testUnparse('for(;i<100;i++ ){}');
|
| + testUnparse('for(i=0;i<100;i++ ){}');
|
| }
|
|
|
| testEmptyList() {
|
| @@ -123,7 +123,7 @@ testNativeMethods() {
|
| }
|
|
|
| testPrefixIncrements() {
|
| - testUnparse('++i;');
|
| + testUnparse(' ++i;');
|
| testUnparse('++a[i];');
|
| testUnparse('++a[++b[i]];');
|
| }
|
|
|