diff --git a/tests/Driver/Pgsql/ActiveRecordTest.php b/tests/Driver/Pgsql/ActiveRecordTest.php index 620d71d36..6f6efd6cd 100644 --- a/tests/Driver/Pgsql/ActiveRecordTest.php +++ b/tests/Driver/Pgsql/ActiveRecordTest.php @@ -403,8 +403,8 @@ public function testToArrayForArrayable(): void $this->assertSame( [ 'id' => 1, - 'email' => 'user1@example.com', 'name' => 'user1', + 'email' => 'user1@example.com', 'address' => 'address1', 'status' => 'active', 'item' => [ @@ -416,8 +416,8 @@ public function testToArrayForArrayable(): void 'items' => [ [ 'id' => 3, - 'email' => 'user3@example.com', 'name' => 'user3', + 'email' => 'user3@example.com', 'status' => 'inactive', ], ] @@ -429,11 +429,11 @@ public function testToArrayForArrayable(): void 'address', 'status', 'item.id', - 'item.name', 'item.email', + 'item.name', 'items.0.id', - 'items.0.name', 'items.0.email', + 'items.0.name', ]), ); }