Skip to content

Commit

Permalink
notLooseEquals should be !deepEqual
Browse files Browse the repository at this point in the history
  • Loading branch information
Raynos authored and James Halliday committed Nov 11, 2014
1 parent 249f961 commit 5121547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ Test.prototype.notDeepLooseEqual
= Test.prototype.notLooseEqual
= Test.prototype.notLooseEquals
= function (a, b, msg, extra) {
this._assert(deepEqual(a, b), {
this._assert(!deepEqual(a, b), {
message : defined(msg, 'should be equivalent'),
operator : 'notDeepLooseEqual',
actual : a,
Expand Down

0 comments on commit 5121547

Please sign in to comment.