| Index: tests/utils/recursive_import_test.dart
|
| diff --git a/tests/utils/recursive_import_test.dart b/tests/utils/recursive_import_test.dart
|
| index 6799f43fe29d8c518bf2bdc5eb8b7995e18c3beb..59aade09e952aaef4f68c26110dde8db8cc4e3a0 100644
|
| --- a/tests/utils/recursive_import_test.dart
|
| +++ b/tests/utils/recursive_import_test.dart
|
| @@ -7,7 +7,6 @@
|
| import "package:expect/expect.dart";
|
| import 'dart:async';
|
| import '../../sdk/lib/_internal/compiler/compiler.dart';
|
| -import 'dart:uri';
|
|
|
| const CORE_LIB = """
|
| library core;
|
| @@ -104,9 +103,9 @@ main() {
|
| }
|
|
|
| Future<String> result =
|
| - compile(new Uri.fromComponents(scheme: 'main'),
|
| - new Uri.fromComponents(scheme: 'lib', path: '/'),
|
| - new Uri.fromComponents(scheme: 'package', path: '/'),
|
| + compile(new Uri(scheme: 'main'),
|
| + new Uri(scheme: 'lib', path: '/'),
|
| + new Uri(scheme: 'package', path: '/'),
|
| provider, handler);
|
| result.then((String code) {
|
| Expect.isNull(code);
|
|
|