Index: pkg/unittest/lib/src/operator_matchers.dart |
diff --git a/pkg/unittest/lib/src/operator_matchers.dart b/pkg/unittest/lib/src/operator_matchers.dart |
index 432b5d3fce5acb201dc160d835a926711afdc300..c1ba5216181cdab5305510dbbe86de52e75e89dc 100644 |
--- a/pkg/unittest/lib/src/operator_matchers.dart |
+++ b/pkg/unittest/lib/src/operator_matchers.dart |
@@ -14,8 +14,7 @@ class _IsNot extends Matcher { |
const _IsNot(Matcher this._matcher); |
- bool matches(item, Map matchState) => |
- !_matcher.matches(item, matchState); |
+ bool matches(item, Map matchState) => !_matcher.matches(item, matchState); |
Description describe(Description description) => |
description.add('not ').addDescriptionOf(_matcher); |