| Index: tests/compiler/dart2js/import_mirrors_test.dart
|
| diff --git a/tests/compiler/dart2js/import_mirrors_test.dart b/tests/compiler/dart2js/import_mirrors_test.dart
|
| index cbe044bb33a932f364b1f9b3769a3f56774a62de..fa77b4cc41ba6324764cb0eba0f816b6abed2def 100644
|
| --- a/tests/compiler/dart2js/import_mirrors_test.dart
|
| +++ b/tests/compiler/dart2js/import_mirrors_test.dart
|
| @@ -66,16 +66,16 @@ import 'first.dart';
|
| main() {}
|
| ''',
|
| '/first.dart': '''
|
| -import 'package:second.dart';
|
| +import 'package:second/second.dart';
|
| ''',
|
| - '/pkg/second.dart': '''
|
| + '/pkg/second/second.dart': '''
|
| import 'dart:mirrors';
|
| ''',
|
|
|
| 'paths':
|
| - "first.dart => package:second.dart => dart:mirrors",
|
| + "first.dart => package:second => dart:mirrors",
|
| 'verbosePaths':
|
| - "main.dart => first.dart => package:second.dart => dart:mirrors",
|
| + "main.dart => first.dart => package:second/second.dart => dart:mirrors",
|
| };
|
|
|
| const INDIRECT_PACKAGE_IMPORT2 = const {
|
|
|