| Index: tests/utils/dummy_compiler_test.dart
|
| diff --git a/tests/utils/dummy_compiler_test.dart b/tests/utils/dummy_compiler_test.dart
|
| index cf573377c0a749a875fd87903f3467d0499008a7..43a79c58c51c70b3a3868953123a757f0f5c2441 100644
|
| --- a/tests/utils/dummy_compiler_test.dart
|
| +++ b/tests/utils/dummy_compiler_test.dart
|
| @@ -25,6 +25,8 @@ String libProvider(Uri uri) {
|
| return buildLibrarySource(DEFAULT_JS_HELPER_LIBRARY);
|
| } else if (uri.path.endsWith('isolate_helper.dart')) {
|
| return buildLibrarySource(DEFAULT_ISOLATE_HELPER_LIBRARY);
|
| + } else if (uri.path.endsWith('/async.dart')) {
|
| + return buildLibrarySource(DEFAULT_ASYNC_LIBRARY);
|
| } else {
|
| return "library lib${uri.path.replaceAll('/', '.')};";
|
| }
|
|
|