| Index: lib/src/runner/vm/environment.dart
|
| diff --git a/lib/src/runner/vm/environment.dart b/lib/src/runner/vm/environment.dart
|
| index b7480ea9eb75a2e1636214f42fd1bc85ebdc9651..086c6f443b33adae2b6b87677951a51222fa7474 100644
|
| --- a/lib/src/runner/vm/environment.dart
|
| +++ b/lib/src/runner/vm/environment.dart
|
| @@ -4,8 +4,9 @@
|
|
|
| library test.runner.vm.environment;
|
|
|
| +import 'package:async/async.dart';
|
| +
|
| import '../environment.dart';
|
| -import '../../util/cancelable_future.dart';
|
|
|
| /// The environment for test suites loaded in an isolate in this Dart VM.
|
| class VMEnvironment implements Environment {
|
| @@ -17,7 +18,7 @@ class VMEnvironment implements Environment {
|
| Uri get remoteDebuggerUrl => throw new UnsupportedError(
|
| "VMEnvironment.observatoryUrl is not supported.");
|
|
|
| - CancelableFuture displayPause() =>
|
| + CancelableOperation displayPause() =>
|
| throw new UnsupportedError(
|
| "The VM doesn't yet support Environment.displayPause.");
|
| }
|
|
|