Skip to content
This repository was archived by the owner on Nov 4, 2020. It is now read-only.

Commit 432b303

Browse files
committed
Update test to new defaults
1 parent da60aa7 commit 432b303

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/ext/eql.test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ describe('eql', function() {
4343
});
4444

4545
it('should allow to test with prototypes', function() {
46+
should.config.checkProtoEql = false;
47+
4648
var b = {a: 2};
4749
var a = Object.create(null);
4850
a.a = 2;
@@ -55,7 +57,7 @@ describe('eql', function() {
5557
b.should.be.eql(a);
5658
}, 'expected Object { a: 2 } to equal { a: 2 } (because A and B have different prototypes)');
5759

58-
should.config.checkProtoEql = false;
60+
5961
});
6062

6163
it('should check one of equal', function() {

0 commit comments

Comments
 (0)