Index: tests/corelib/list_iterators_test.dart |
diff --git a/tests/corelib/list_iterators_test.dart b/tests/corelib/list_iterators_test.dart |
index 6f29061fb0fb28e9535daf5284e6e2c4c975cf45..4c56b30cb4217c046e2ef6c08fb5c3e65d2556b8 100644 |
--- a/tests/corelib/list_iterators_test.dart |
+++ b/tests/corelib/list_iterators_test.dart |
@@ -23,8 +23,8 @@ class ListIteratorsTest { |
static testMain() { |
checkListIterator([]); |
checkListIterator([1, 2]); |
- checkListIterator(new List(0)); |
- checkListIterator(new List(10)); |
+ checkListIterator(new List.fixedLength(0)); |
+ checkListIterator(new List.fixedLength(10)); |
checkListIterator(new List()); |
List g = new List(); |
g.addAll([1, 2]); |