| Index: tests/corelib/list_iterators_test.dart
|
| diff --git a/tests/corelib/list_iterators_test.dart b/tests/corelib/list_iterators_test.dart
|
| index 5b65d5b088f55794c5cc5596a94b07726d8c1d04..74875652e5bddebdb8fd8c3e1aaf5d33ee73fadf 100644
|
| --- a/tests/corelib/list_iterators_test.dart
|
| +++ b/tests/corelib/list_iterators_test.dart
|
| @@ -5,7 +5,7 @@
|
| class ListIteratorsTest {
|
| static void checkListIterator(List a) {
|
| Iterator it = a.iterator();
|
| - Expect.equals(false, it.hasNext == a.isEmpty());
|
| + Expect.equals(false, it.hasNext == a.isEmpty);
|
| for (int i = 0; i < a.length; i++) {
|
| Expect.equals(true, it.hasNext);
|
| var elem = it.next();
|
|
|