From 876454489f262296e62469d8143dfb3fcd516dcc Mon Sep 17 00:00:00 2001 From: Benjamin Chrobot Date: Thu, 11 Feb 2021 14:44:46 -0500 Subject: [PATCH] fix: add missing logger --- src/objects/test-helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/objects/test-helpers.ts b/src/objects/test-helpers.ts index a6f3cf9..96d9cf1 100644 --- a/src/objects/test-helpers.ts +++ b/src/objects/test-helpers.ts @@ -13,7 +13,7 @@ export const checkIdempotency = async ( const client = await pool.connect(); await client.query("begin"); - const context: RunContextI = { schema: "public", client }; + const context: RunContextI = { schema: "public", client, logger: DefaultLogger }; const operationList = await object.reconcile(desired, undefined); const statements = operationList.map(o => {