Skip to content

Commit

Permalink
fix: add missing logger
Browse files Browse the repository at this point in the history
  • Loading branch information
bchrobot committed Feb 11, 2021
1 parent 51de8fd commit 8764544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/objects/test-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const checkIdempotency = async <ObjectType, OperationType>(
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 => {
Expand Down

0 comments on commit 8764544

Please sign in to comment.