Skip to content

Commit e00142d

Browse files
committed
Fix: test configs
1 parent 0868ccd commit e00142d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

config/config_test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ doctrine:
1313
dbal:
1414
# driver: 'pdo_sqlite'
1515
# memory: true
16-
driver: 'pdo_mysql'
17-
host: '%database_host%'
18-
port: '%database_port%'
19-
dbname: 'phplist'
20-
user: '%database_user%'
21-
password: '%database_password%'
22-
charset: UTF8
16+
driver: 'pdo_mysql'
17+
host: '%database_host%'
18+
port: '%database_port%'
19+
dbname: 'phplist'
20+
user: '%database_user%'
21+
password: '%database_password%'
22+
charset: UTF8
2323

src/Migrations/Version20251030081120PostgreSqlPlatform.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function up(Schema $schema): void
2424
$this->skipIf(
2525
!$platform instanceof PostgreSqlPlatform,
2626
sprintf(
27-
'This migration is only applicable for MySQL. Current platform: %s',
27+
'This migration is only applicable for PostgreSql. Current platform: %s',
2828
get_class($platform)
2929
)
3030
);
@@ -187,7 +187,7 @@ public function down(Schema $schema): void
187187
$this->skipIf(
188188
!$platform instanceof PostgreSqlPlatform,
189189
sprintf(
190-
'This migration is only applicable for MySQL. Current platform: %s',
190+
'This migration is only applicable for PostgreSql. Current platform: %s',
191191
get_class($platform)
192192
)
193193
);

0 commit comments

Comments
 (0)