From 6dafa54f57341f44af13ff0451decf435cd1845d Mon Sep 17 00:00:00 2001 From: Daniel Diaz <39510674+IslandRhythms@users.noreply.github.com> Date: Wed, 14 Feb 2024 14:34:21 -0500 Subject: [PATCH] fix: lint --- test/types/models.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/types/models.test.ts b/test/types/models.test.ts index 6761f031456..61298be836d 100644 --- a/test/types/models.test.ts +++ b/test/types/models.test.ts @@ -896,7 +896,7 @@ function gh4727() { const users = [{ _id: new mongoose.Types.ObjectId(), name: 'Val' }]; const company = { _id: new mongoose.Types.ObjectId(), name: 'Booster', users: [users[0]] }; - return Company.hydrate(company, {}, { hydratedPopulatedDocs: true }) + return Company.hydrate(company, {}, { hydratedPopulatedDocs: true }); }