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

Unified Diff: tests/corelib/linked_hash_map_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/linked_hash_map_test.dart
diff --git a/tests/corelib/linked_hash_map_test.dart b/tests/corelib/linked_hash_map_test.dart
index 4de0b3e8a9845fb88f83945b3e09434585a9cece..54eddebc3de38bc23a25d67f3f3ee3487b4ee3cb 100644
--- a/tests/corelib/linked_hash_map_test.dart
+++ b/tests/corelib/linked_hash_map_test.dart
@@ -15,8 +15,8 @@ class LinkedHashMapTest {
map["d"] = 4;
map["e"] = 5;
- List<String> keys = new List<String>.fixedLength(5);
- List<int> values = new List<int>.fixedLength(5);
+ List<String> keys = new List<String>(5);
+ List<int> values = new List<int>(5);
int index;

Powered by Google App Engine
This is Rietveld 408576698