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

Unified Diff: tests/corelib/linked_hash_map_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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
« no previous file with comments | « tests/corelib/json_test.dart ('k') | tests/corelib/list_first_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 f90fa888b0cc144af29cc75994e5c734b4bb7db7..ba39eed29c75358a0362dd267a36c2363cd29929 100644
--- a/tests/corelib/linked_hash_map_test.dart
+++ b/tests/corelib/linked_hash_map_test.dart
@@ -13,8 +13,8 @@ class LinkedHashMapTest {
map["d"] = 4;
map["e"] = 5;
- List<String> keys = new List<String>(5);
- List<int> values = new List<int>(5);
+ List<String> keys = new List<String>.fixedLength(5);
+ List<int> values = new List<int>.fixedLength(5);
int index;
« no previous file with comments | « tests/corelib/json_test.dart ('k') | tests/corelib/list_first_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698