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

Unified Diff: tests/corelib/list_iterators_test.dart

Issue 11312122: Change List constructors. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Address comments and fix. Created 8 years, 1 month 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 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]);

Powered by Google App Engine
This is Rietveld 408576698