From e284c5e2c6fc039ec53da122178c462cbfab498c Mon Sep 17 00:00:00 2001 From: lwih Date: Fri, 29 Dec 2023 15:06:07 +0100 Subject: [PATCH] AbstractDBTests - remove fake password --- .../rapportnav/infrastructure/database/AbstractDBTests.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/test/kotlin/fr/gouv/gmampa/rapportnav/infrastructure/database/AbstractDBTests.kt b/backend/src/test/kotlin/fr/gouv/gmampa/rapportnav/infrastructure/database/AbstractDBTests.kt index 21c1a65c..615187a8 100644 --- a/backend/src/test/kotlin/fr/gouv/gmampa/rapportnav/infrastructure/database/AbstractDBTests.kt +++ b/backend/src/test/kotlin/fr/gouv/gmampa/rapportnav/infrastructure/database/AbstractDBTests.kt @@ -23,8 +23,7 @@ abstract class AbstractDBTests { .apply { withExposedPorts(5432) withEnv("POSTGRES_DB", "testdb") - withEnv("POSTGRES_USER", "postgres") - withEnv("POSTGRES_PASSWORD", "postgres") +// waitingFor( Wait.forLogMessage(".*ready to accept connections.*\\s", 2), )