Skip to content

Commit eb0368f

Browse files
committed
style: fix lint
1 parent cb59f37 commit eb0368f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/model.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -3373,11 +3373,11 @@ Model.bulkWrite = async function bulkWrite(ops, options) {
33733373
options = options || {};
33743374

33753375
const shouldSkip = await this.hooks.execPre('bulkWrite', this, [ops, options]).catch(err => {
3376-
if (err instanceof Kareem.skipWrappedFunction) {
3377-
return err;
3378-
}
3379-
throw err;
3376+
if (err instanceof Kareem.skipWrappedFunction) {
3377+
return err;
33803378
}
3379+
throw err;
3380+
}
33813381
);
33823382

33833383
if (shouldSkip) {

test/document.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14424,8 +14424,8 @@ describe('document', function() {
1442414424
}
1442514425
});
1442614426

14427-
describe('async stack traces (gh-15317)', function () {
14428-
it('works with save() validation errors', async function () {
14427+
describe('async stack traces (gh-15317)', function() {
14428+
it('works with save() validation errors', async function() {
1442914429
const userSchema = new mongoose.Schema({
1443014430
name: { type: String, required: true, validate: v => v.length > 3 },
1443114431
age: Number

0 commit comments

Comments
 (0)