| Index: tests/compiler/dart2js/async_compiler_input_provider_test.dart
|
| diff --git a/tests/compiler/dart2js/async_compiler_input_provider_test.dart b/tests/compiler/dart2js/async_compiler_input_provider_test.dart
|
| index 6a4502218a26da5bc77ce59a6f9cc7aead954689..7f370c31267952914ee73a65612fd18f15d6a0df 100644
|
| --- a/tests/compiler/dart2js/async_compiler_input_provider_test.dart
|
| +++ b/tests/compiler/dart2js/async_compiler_input_provider_test.dart
|
| @@ -31,7 +31,7 @@ Future<String> provideInput(Uri uri) {
|
| var source = SOURCES[uri.path];
|
| if (source == null) {
|
| // Not one of our source files, so assume it's a built-in.
|
| - source = new File(uriPathToNative(uri.path)).readAsStringSync();
|
| + source = new File(uri.toFilePath()).readAsStringSync();
|
| }
|
|
|
| // Deliver the input asynchronously.
|
|
|