Skip to content

Commit e5dcf43

Browse files
committed
style: fix lint
1 parent 919592d commit e5dcf43

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/query.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3253,7 +3253,7 @@ Query.prototype._deleteMany = async function _deleteMany() {
32533253

32543254
// Check for empty/invalid filter with requireFilter option
32553255
checkRequireFilter(this._conditions, this.options);
3256-
3256+
32573257
if (this.error() != null) {
32583258
throw this.error();
32593259
}

test/query.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4464,7 +4464,7 @@ describe('Query', function() {
44644464
beforeEach(async function() {
44654465
this.timeout(15000);
44664466

4467-
try {
4467+
try {
44684468
const schema = new Schema({ name: String, email: String });
44694469
Person = db.model('Person', schema, null, { cache: false });
44704470

@@ -4935,4 +4935,4 @@ describe('Query', function() {
49354935
});
49364936
});
49374937
});
4938-
});
4938+
});

0 commit comments

Comments
 (0)