Skip to content

Commit 676a106

Browse files
committed
test(pg): avoid forced database drops
1 parent c3fefe2 commit 676a106

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/core/test/helper/pg-verify-url.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export async function createPgTestDatabase(
5555
try {
5656
await pool.end()
5757
if (created) {
58-
await adminPool.query(`DROP DATABASE ${quotedDbName} WITH (FORCE)`)
58+
await adminPool.query(`DROP DATABASE ${quotedDbName}`)
5959
}
6060
} finally {
6161
await adminPool.end()

0 commit comments

Comments
 (0)