Skip to content

Commit 0a98741

Browse files
committed
fix: add missing driver configuration for PostgreSQL in MutationTest.
1 parent 07956d2 commit 0a98741

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/pgsql/MutationTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
#[Group('mutation')]
1111
final class MutationTest extends TestCase
1212
{
13+
protected string $driverName = 'pgsql';
14+
protected string|null $dsn = 'pgsql:host=localhost;dbname=yiitest;port=5432;';
15+
protected string $password = 'root';
16+
protected string $username = 'root';
17+
1318
public function testChildrenMethodRequiresOrderByForCorrectTreeTraversal(): void
1419
{
1520
$expectedOrder = ['Child A', 'Child B', 'Child C'];

0 commit comments

Comments
 (0)