From fd367cc11fb20a6ad2563b25bdcd9ecfa05845fb Mon Sep 17 00:00:00 2001 From: Daniel Diaz <39510674+IslandRhythms@users.noreply.github.com> Date: Thu, 2 Mar 2023 14:41:35 -0500 Subject: [PATCH] fix: lint --- test/types/populate.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/types/populate.test.ts b/test/types/populate.test.ts index feb5e049a42..5ef8c57ef53 100644 --- a/test/types/populate.test.ts +++ b/test/types/populate.test.ts @@ -366,7 +366,7 @@ async function gh13070() { const child = model('Child', childSchema); const doc = await parent.findOne(); - await child.populate<{child: IChild}>(doc, 'child'); + await child.populate<{ child: IChild }>(doc, 'child'); }