| Index: tests/lib/async/future_test.dart
|
| diff --git a/tests/lib/async/future_test.dart b/tests/lib/async/future_test.dart
|
| index dddccf4d2c38d08f2245be88bbe0fc2b34541aa0..84effa890536ff2c82bbddacd9eec8d4d7bdb124 100644
|
| --- a/tests/lib/async/future_test.dart
|
| +++ b/tests/lib/async/future_test.dart
|
| @@ -101,13 +101,6 @@ testException() {
|
| completer.completeError(ex);
|
| }
|
|
|
| -testExceptionNoSuccessListeners() {
|
| - final completer = new Completer<int>();
|
| - final future = completer.future;
|
| - final ex = new Exception();
|
| - completer.completeException(ex); // future.then is not called, so no exception
|
| -}
|
| -
|
| testExceptionHandler() {
|
| final completer = new Completer<int>();
|
| final future = completer.future;
|
|
|