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

Unified Diff: tests/language/string_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/language/ordered_maps_test.dart ('k') | tests/language/type_cast_vm_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/string_test.dart
diff --git a/tests/language/string_test.dart b/tests/language/string_test.dart
index f2072ff8a0ebb919f20740ddd75551c984bc61ef..9e843966a44273ee15ed498e2cd3f823b9f92a20 100644
--- a/tests/language/string_test.dart
+++ b/tests/language/string_test.dart
@@ -21,7 +21,7 @@ class StringTest {
}
static testStringsJoin() {
- List<String> a = new List<String>(2);
+ List<String> a = new List<String>.fixedLength(2);
a[0] = "Hello";
a[1] = "World";
String s = Strings.join(a, "*^*");
« no previous file with comments | « tests/language/ordered_maps_test.dart ('k') | tests/language/type_cast_vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698