Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hadihallak committed Feb 7, 2024
1 parent 9a46960 commit 99781f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/WorkOS/UserManagementTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1005,6 +1005,7 @@ private function userResponseFixture()
"first_name" => "Damien",
"last_name" => "Alabaster",
"email_verified" => true,
"profile_picture_url" => "https://example.com/photo.jpg",
"created_at" => "2021-06-25T19:07:33.155Z",
"updated_at" => "2021-06-25T19:07:33.155Z"
]
Expand All @@ -1022,6 +1023,7 @@ private function createUserAndTokenResponseFixture()
"first_name" => "Damien",
"last_name" => "Alabaster",
"email_verified" => true,
'profile_picture_url' => 'https://example.com/photo.jpg',
"created_at" => "2021-06-25T19:07:33.155Z",
"updated_at" => "2021-06-25T19:07:33.155Z"
]
Expand All @@ -1037,6 +1039,7 @@ private function createUserResponseFixture()
"first_name" => "Damien",
"last_name" => "Alabaster",
"email_verified" => true,
'profile_picture_url' => 'https://example.com/photo.jpg',
"created_at" => "2021-06-25T19:07:33.155Z",
"updated_at" => "2021-06-25T19:07:33.155Z"
]);
Expand Down Expand Up @@ -1075,8 +1078,8 @@ private function listUsersResponseFixture()
"email" => "[email protected]",
"first_name" => "Damien",
"last_name" => "Alabaster",
"profile_picture_url" => "https://example.com/photo.jpg",
"email_verified" => true,
"profile_picture_url" => "https://example.com/photo.jpg",
"created_at" => "2021-06-25T19:07:33.155Z",
"updated_at" => "2021-06-25T19:07:33.155Z"
]
Expand Down

0 comments on commit 99781f3

Please sign in to comment.