| Index: tests/compiler/dart2js/jumps/data/simple_loops.dart
|
| diff --git a/tests/compiler/dart2js/jumps/data/simple_loops.dart b/tests/compiler/dart2js/jumps/data/simple_loops.dart
|
| index 5230ea978525725b506bf384d3a33e5ba236ba8f..3e683ba30b186ea3dd97b279aeb3873dd318f429 100644
|
| --- a/tests/compiler/dart2js/jumps/data/simple_loops.dart
|
| +++ b/tests/compiler/dart2js/jumps/data/simple_loops.dart
|
| @@ -3,7 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| simpleForLoop(count) {
|
| - for (int i = 0; i < count; i = i + 1) {
|
| + for (int i = 0; i < count; i++) {
|
| print(i);
|
| }
|
| }
|
|
|