| Index: tests/corelib/for_in_test.dart
|
| diff --git a/tests/corelib/for_in_test.dart b/tests/corelib/for_in_test.dart
|
| index 616d7211c284114f6c248c8d8102f7c0104d7556..35d1a86439caf2cf607a7419e6821414e6866568 100644
|
| --- a/tests/corelib/for_in_test.dart
|
| +++ b/tests/corelib/for_in_test.dart
|
| @@ -48,7 +48,7 @@ class ForInTest {
|
|
|
| count = 0;
|
| int i = 0;
|
| - Expect.equals(false, set.contains(i)); // Used to test [i] after loop.
|
| + Expect.equals(false, set.contains(i)); // Used to test [i] after loop.
|
| for (i in set) {
|
| count += i;
|
| }
|
|
|