| Index: tests/lib/async/future_test.dart
|
| ===================================================================
|
| --- tests/lib/async/future_test.dart (revision 16956)
|
| +++ tests/lib/async/future_test.dart (working copy)
|
| @@ -19,8 +19,8 @@
|
| testNeverComplete() {
|
| final completer = new Completer<int>();
|
| final future = completer.future;
|
| - future.then((v) => Except.fails("Value not expected"));
|
| - future.catchError((e) => Except.fails("Value not expected"));
|
| + future.then((v) => Expect.fails("Value not expected"));
|
| + future.catchError((e) => Expect.fails("Value not expected"));
|
| }
|
|
|
| testComplete() {
|
|
|