Index: tests/corelib/list_iterators_test.dart |
diff --git a/tests/corelib/list_iterators_test.dart b/tests/corelib/list_iterators_test.dart |
index 841924802754523d583ee27cc735c1b198a5209e..0be3cf8e061c3b38a1164ea6dff244aa252a86f2 100644 |
--- a/tests/corelib/list_iterators_test.dart |
+++ b/tests/corelib/list_iterators_test.dart |
@@ -17,8 +17,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, 3]); |