| Index: tests/language/import_collection_no_prefix_test.dart
|
| diff --git a/tests/language/import_core_impl_no_prefix_test.dart b/tests/language/import_collection_no_prefix_test.dart
|
| similarity index 71%
|
| rename from tests/language/import_core_impl_no_prefix_test.dart
|
| rename to tests/language/import_collection_no_prefix_test.dart
|
| index 434d6067a05e5ef02b18aa85ca049f3fa64cf591..6353284be495f9098109654d34ff884849d51097 100644
|
| --- a/tests/language/import_core_impl_no_prefix_test.dart
|
| +++ b/tests/language/import_collection_no_prefix_test.dart
|
| @@ -4,10 +4,10 @@
|
|
|
| // Dart test program importing the core library explicitly.
|
|
|
| -#library("ImportCoreImplNoPrefixTest.dart");
|
| -#import("dart:coreimpl");
|
| +#library("ImportCollectionNoPrefixTest.dart");
|
| +#import("dart:collection");
|
|
|
| main() {
|
| var e = new SplayTreeMap();
|
| - print('"dart:coreimpl" imported, $e allocated');
|
| + print('"dart:collection" imported, $e allocated');
|
| }
|
|
|