diff --git a/tests/ActiveRecordTest.php b/tests/ActiveRecordTest.php index de8d993bc..d9c4283b0 100644 --- a/tests/ActiveRecordTest.php +++ b/tests/ActiveRecordTest.php @@ -785,8 +785,8 @@ public function testToArrayForArrayable(): void $this->assertSame( [ 'id' => 1, - 'email' => 'user1@example.com', 'name' => 'user1', + 'email' => 'user1@example.com', 'address' => 'address1', 'status' => 'active', 'item' => [ @@ -798,8 +798,8 @@ public function testToArrayForArrayable(): void 'items' => [ [ 'id' => 3, - 'email' => 'user3@example.com', 'name' => 'user3', + 'email' => 'user3@example.com', 'status' => 'inactive', ], ] diff --git a/tests/Driver/Oracle/ActiveRecordTest.php b/tests/Driver/Oracle/ActiveRecordTest.php index e48379226..078b3cf1e 100644 --- a/tests/Driver/Oracle/ActiveRecordTest.php +++ b/tests/Driver/Oracle/ActiveRecordTest.php @@ -188,8 +188,8 @@ public function testToArrayForArrayable(): void $this->assertSame( [ 'id' => 1, - 'email' => 'user1@example.com', 'name' => 'user1', + 'email' => 'user1@example.com', 'address' => 'address1', 'status' => 'active', 'item' => [ @@ -201,8 +201,8 @@ public function testToArrayForArrayable(): void 'items' => [ [ 'id' => 3, - 'email' => 'user3@example.com', 'name' => 'user3', + 'email' => 'user3@example.com', 'status' => 'inactive', ], ]