| Index: lib/src/prints_matcher.dart
|
| diff --git a/lib/src/prints_matcher.dart b/lib/src/prints_matcher.dart
|
| index 1753f0da9f942fe9e6c989603474148a35128b8d..92efdcac5e0ae9befd318035a7c4b0e2b1880240 100644
|
| --- a/lib/src/prints_matcher.dart
|
| +++ b/lib/src/prints_matcher.dart
|
| @@ -6,7 +6,7 @@ library unittest.prints_matcher;
|
|
|
| import 'dart:async';
|
|
|
| -import 'package:matcher/matcher.dart' hide completes, wrapAsync, expect;
|
| +import 'package:matcher/matcher.dart' hide completes, expect;
|
|
|
| import '../unittest.dart';
|
|
|
| @@ -40,9 +40,9 @@ class _Prints extends Matcher {
|
| return _matcher.matches(actual, matchState);
|
| }
|
|
|
| - return completes.matches(result.then(wrapAsync((_) {
|
| + return completes.matches(result.then((_) {
|
| expect(buffer.toString(), _matcher);
|
| - }, 'prints')), matchState);
|
| + }), matchState);
|
| }
|
|
|
| Description describe(Description description) =>
|
|
|