diff --git a/packages/server/src/integrations/tests/utils/postgres.ts b/packages/server/src/integrations/tests/utils/postgres.ts index f65d33e3e0..21f5dbb352 100644 --- a/packages/server/src/integrations/tests/utils/postgres.ts +++ b/packages/server/src/integrations/tests/utils/postgres.ts @@ -15,9 +15,7 @@ export async function getDsConfig(): Promise { .withExposedPorts(5432) .withEnv("POSTGRES_PASSWORD", "password") .withWaitStrategy( - Wait.forLogMessage( - "PostgreSQL init process complete; ready for start up." - ) + Wait.forLogMessage("database system is ready to accept connections") ) .start() }