We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0605e24 commit a448294Copy full SHA for a448294
tests/Integration/AsyncPostgre/AsyncPostgrePoolTest.php
@@ -19,10 +19,10 @@ function isPostgreSQLAvailable(): bool
19
}
20
21
$config = [
22
- 'host' => getenv('POSTGRES_HOST') ?: 'localhost',
23
- 'user' => getenv('POSTGRES_USER') ?: 'postgres',
24
- 'dbname' => getenv('POSTGRES_DB') ?: 'postgres',
25
- 'password' => getenv('POSTGRES_PASSWORD') ?: ''
+ 'host' => getenv('POSTGRES_HOST') ?: 'testdb',
+ 'user' => getenv('POSTGRES_USER') ?: 'testuser',
+ 'dbname' => getenv('POSTGRES_DB') ?: 'testdb',
+ 'password' => getenv('POSTGRES_PASSWORD') ?: 'testpass'
26
];
27
28
$connectionString = implode(' ', array_map(
0 commit comments