Chromium Code Reviews| Index: tests/corelib_2/string_from_list_test.dart |
| diff --git a/tests/corelib/string_from_list_test.dart b/tests/corelib_2/string_from_list_test.dart |
| similarity index 99% |
| rename from tests/corelib/string_from_list_test.dart |
| rename to tests/corelib_2/string_from_list_test.dart |
| index 062d6b6f0491150900a2df85b62f60c3b1d107a3..f380441e6746a7b3fd639ef2f6b6194178164afc 100644 |
| --- a/tests/corelib/string_from_list_test.dart |
| +++ b/tests/corelib_2/string_from_list_test.dart |
| @@ -15,7 +15,7 @@ void main() { |
| Expect.equals("\u{12345}*", new String.fromCharCodes([0x12345, 42])); |
| Expect.equals("", new String.fromCharCodes(new List())); |
| { |
| - var a = new List(); |
| + var a = new List<int>(); |
|
Bob Nystrom
2017/07/21 23:00:31
Since you're here anyway, how about just <int>[].
|
| a.add(65); |
| a.add(66); |
| Expect.equals("AB", new String.fromCharCodes(a)); |