Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mariosimao committed Dec 31, 2023
1 parent 0224d12 commit 8dc75e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Unit/Pages/Properties/CreatedByTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ public function test_array_conversion(): void
"id" => "abc",
"type" => "created_by",
"created_by" => [
"object" => "user",
"id" => "62e1fd10-8b04-41eb-97c1-d2deddd160d4",
"name" => "Mario",
"avatar_url" => null,
"type" => "person",
"person" => [ "email" => "[email protected]" ],
],
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Pages/Properties/LastEditedByTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ public function test_array_conversion(): void
"id" => "abc",
"type" => "last_edited_by",
"last_edited_by" => [
"object" => "user",
"id" => "62e1fd10-8b04-41eb-97c1-d2deddd160d4",
"name" => "Mario",
"avatar_url" => null,
"type" => "person",
"person" => [ "email" => "[email protected]" ],
],
Expand Down

0 comments on commit 8dc75e1

Please sign in to comment.