Merge pull request #794 from lucasfcosta/consistent-message-assert-equals

Enabling showDiff for assert's equal and notEqual methods. Closes #790
This commit is contained in:
Keith Cirkel 2016-09-11 22:20:53 +01:00 committed by GitHub
commit 95b511a51c

View file

@ -129,6 +129,7 @@ module.exports = function (chai, util) {
, 'expected #{this} to not equal #{act}'
, exp
, act
, true
);
};
@ -156,6 +157,7 @@ module.exports = function (chai, util) {
, 'expected #{this} to equal #{act}'
, exp
, act
, true
);
};