| Index: pkg/unittest/lib/src/core_matchers.dart
|
| ===================================================================
|
| --- pkg/unittest/lib/src/core_matchers.dart (revision 14690)
|
| +++ pkg/unittest/lib/src/core_matchers.dart (working copy)
|
| @@ -59,7 +59,7 @@
|
|
|
| class _IsFalse extends BaseMatcher {
|
| const _IsFalse();
|
| - bool matches(item, MatchState matchState) => item != true;
|
| + bool matches(item, MatchState matchState) => item == false;
|
| Description describe(Description description) =>
|
| description.add('false');
|
| }
|
|
|