From 99a812cc7526cc5b2ca3731e6d0f0c2013052581 Mon Sep 17 00:00:00 2001 From: dswbx Date: Thu, 18 Sep 2025 10:23:18 +0200 Subject: [PATCH] test: remove unused parameter from getDummyConnection calls --- app/__test__/modules/DbModuleManager.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/__test__/modules/DbModuleManager.spec.ts b/app/__test__/modules/DbModuleManager.spec.ts index 31c5bee..b85ebbf 100644 --- a/app/__test__/modules/DbModuleManager.spec.ts +++ b/app/__test__/modules/DbModuleManager.spec.ts @@ -5,7 +5,7 @@ import { TABLE_NAME } from "modules/db/migrations"; describe("DbModuleManager", () => { it("should extract secrets", async () => { - const { dummyConnection } = getDummyConnection(false); + const { dummyConnection } = getDummyConnection(); const m = new DbModuleManager(dummyConnection, { initial: { auth: { @@ -22,7 +22,7 @@ describe("DbModuleManager", () => { }); it("should work with initial secrets", async () => { - const { dummyConnection } = getDummyConnection(false); + const { dummyConnection } = getDummyConnection(); const db = dummyConnection.kysely; const m = new DbModuleManager(dummyConnection, { initial: {