Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1985)

Unified Diff: tests/corelib/list_iterators_test.dart

Issue 12328104: Change new List(n) to return fixed length list. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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]);

Powered by Google App Engine
This is Rietveld 408576698