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