| Index: pkg/unittest/test/test_utils.dart
|
| ===================================================================
|
| --- pkg/unittest/test/test_utils.dart (revision 24041)
|
| +++ pkg/unittest/test/test_utils.dart (working copy)
|
| @@ -69,7 +69,7 @@
|
| class PrefixMatcher extends BaseMatcher {
|
| final String _prefix;
|
| const PrefixMatcher(this._prefix);
|
| - bool matches(item, MatchState matchState) {
|
| + bool matches(item, Map matchState) {
|
| return item is String &&
|
| (collapseWhitespace(item)).startsWith(collapseWhitespace(_prefix));
|
| }
|
|
|