diff --git a/integration-tests/environment-helpers/use-db.js b/integration-tests/environment-helpers/use-db.js index 2fc418c430..36d02b0ee0 100644 --- a/integration-tests/environment-helpers/use-db.js +++ b/integration-tests/environment-helpers/use-db.js @@ -69,14 +69,8 @@ const DbTestUtil = { }, shutdown: async function () { - const container = getContainer() - const containerPgConnection = container.resolve( - ContainerRegistrationKeys.PG_CONNECTION - ) - await this.db_.destroy() await this.pgConnection_?.context?.destroy() - await containerPgConnection?.context?.destroy() return await dropDatabase({ DB_NAME }, pgGodCredentials) },