| 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 4215afc98895859a86b5c0a44b378e12959c6cdf..1acf12ea59f4450a0a7b3f88897f9e3e10dab0da 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.fixedLength(s.length);
|
| + List<int> a = new List(s.length);
|
| List<int> ga = new List();
|
| bool exception_caught = false;
|
| for (int i = 0; i < a.length; i++) {
|
|
|