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

Unified Diff: tests/corelib/string_base_vm_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/stopwatch_test.dart ('k') | tests/corelib/string_character_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/string_base_vm_test.dart
diff --git a/tests/corelib/string_base_vm_test.dart b/tests/corelib/string_base_vm_test.dart
index 80ea797051b65f205420922ea9f81a58033bae34..f043f336d96263ccd12d6cb0f9be6c1bd412c2b5 100644
--- a/tests/corelib/string_base_vm_test.dart
+++ b/tests/corelib/string_base_vm_test.dart
@@ -26,7 +26,7 @@ class StringBaseTest {
static testCreation() {
String s = "Hello";
- List<int> a = new List(s.length);
+ List<int> a = new List.fixedLength(s.length);
List<int> ga = new List();
bool exception_caught = false;
for (int i = 0; i < a.length; i++) {
« no previous file with comments | « tests/corelib/stopwatch_test.dart ('k') | tests/corelib/string_character_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698