Skip to content

Commit af4be61

Browse files
committed
Fix lint error
1 parent b46ffe0 commit af4be61

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/model.populate.test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8255,7 +8255,7 @@ describe('model: populate:', function() {
82558255
justOne: true
82568256
}
82578257
}).lean();
8258-
console.log(populatedRides)
8258+
82598259
assert.deepEqual(populatedRides[0].files, []);
82608260
assert.deepEqual(populatedRides[1].files, []);
82618261
});
@@ -8308,10 +8308,9 @@ describe('model: populate:', function() {
83088308
path: 'content.files.uploadedBy',
83098309
justOne: true
83108310
}).lean();
8311-
83128311
assert.equal(populatedRides[0].content.files, undefined);
83138312
assert.equal(populatedRides[1].content.files, undefined);
8314-
})
8313+
});
83158314

83168315
it('sets empty array if populating undefined path (gh-8455)', async function() {
83178316
const TestSchema = new Schema({

0 commit comments

Comments
 (0)