Skip to content

Commit a733539

Browse files
committed
Fix test connection credentials
1 parent 34b3e80 commit a733539

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

tests/Platform/QueryResultTypeWalkerFetchTypeMatrixTest.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3754,23 +3754,21 @@ private function getConnectionParamsForDriver(string $driver): array
37543754
return [
37553755
'host' => getenv('MYSQL_HOST'),
37563756
'user' => 'root',
3757-
'password' => 'Secret.123',
3757+
'password' => 'secret',
37583758
'dbname' => 'foo',
37593759
];
37603760
case 'pdo_pgsql':
37613761
case 'pgsql':
37623762
return [
37633763
'host' => getenv('PGSQL_HOST'),
37643764
'user' => 'root',
3765-
'password' => 'Secret.123',
3765+
'password' => 'secret',
37663766
'dbname' => 'foo',
37673767
];
37683768
case 'pdo_sqlite':
37693769
case 'sqlite3':
37703770
return [
37713771
'memory' => true,
3772-
'user' => 'root',
3773-
'password' => 'Secret.123',
37743772
'dbname' => 'foo',
37753773
];
37763774
case 'pdo_sqlsrv':

tests/Platform/docker/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
ports:
88
- 3306:3306
99
environment:
10-
MYSQL_ROOT_PASSWORD: 'Secret.123'
10+
MYSQL_ROOT_PASSWORD: 'secret'
1111
MYSQL_DATABASE: foo
1212
volumes:
1313
-
@@ -19,7 +19,7 @@ services:
1919
ports:
2020
- 5432:5432
2121
environment:
22-
POSTGRES_PASSWORD: 'Secret.123'
22+
POSTGRES_PASSWORD: 'secret'
2323
POSTGRES_USER: root
2424
POSTGRES_DB: foo
2525
volumes:

0 commit comments

Comments
 (0)