Index: tests/corelib/string_from_list_test.dart |
diff --git a/tests/corelib/string_from_list_test.dart b/tests/corelib/string_from_list_test.dart |
index 99642a1c8c9cdc13dbff0bee22cf4308030ef8fa..23c90f251d99554ce4097a94c766ba55218ca89e 100644 |
--- a/tests/corelib/string_from_list_test.dart |
+++ b/tests/corelib/string_from_list_test.dart |
@@ -4,7 +4,7 @@ |
class StringFromListTest { |
static testMain() { |
- Expect.equals("", new String.fromCharCodes(new List.fixedLength(0))); |
+ Expect.equals("", new String.fromCharCodes(new List(0))); |
Expect.equals("", new String.fromCharCodes([])); |
Expect.equals("", new String.fromCharCodes(const [])); |
Expect.equals("AB", new String.fromCharCodes([65, 66])); |