From e42aaafc4d2f00861434219e152478512a2b006a Mon Sep 17 00:00:00 2001 From: Valeri Karpov Date: Fri, 8 Sep 2023 10:36:04 -0400 Subject: [PATCH] style: fix lint --- test/model.populate.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/model.populate.test.js b/test/model.populate.test.js index bd79133c9a1..c1007f69315 100644 --- a/test/model.populate.test.js +++ b/test/model.populate.test.js @@ -10291,8 +10291,8 @@ describe('model: populate:', function() { { doc: { type: mongoose.Schema.Types.ObjectId, ref: 'Child' }, name: String - }, - ] + } + ] }); const Parent = db.model('Parent', schema); const Child = db.model('Child', new Schema({ name: String }));