From 31596d558231038755748606c9ec74857219426e Mon Sep 17 00:00:00 2001 From: Valeri Karpov Date: Mon, 6 May 2024 14:27:47 -0400 Subject: [PATCH] style: fix lint --- test/document.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/document.test.js b/test/document.test.js index 19f7f3c1f0..b8030900f9 100644 --- a/test/document.test.js +++ b/test/document.test.js @@ -735,7 +735,7 @@ describe('document', function() { return this.content.toUpperCase(); }); postSchema.set('toObject', { virtuals: true }); - + const User = db.model('User', userSchema); const Post = db.model('BlogPost', postSchema);