Skip to content

Commit 5121547

Browse files
RaynosJames Halliday
authored and
James Halliday
committed
notLooseEquals should be !deepEqual
1 parent 249f961 commit 5121547

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ Test.prototype.notDeepLooseEqual
385385
= Test.prototype.notLooseEqual
386386
= Test.prototype.notLooseEquals
387387
= function (a, b, msg, extra) {
388-
this._assert(deepEqual(a, b), {
388+
this._assert(!deepEqual(a, b), {
389389
message : defined(msg, 'should be equivalent'),
390390
operator : 'notDeepLooseEqual',
391391
actual : a,

0 commit comments

Comments
 (0)