Skip to content

Commit

Permalink
fix(test): fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad-Alavi committed Feb 13, 2023
1 parent 1ce3f5b commit 896b9fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function testRegisterNewUserUsingGetVerb(): void
$response->assertStatus(405);
$response->assertJson(
fn (AssertableJson $json) => $json->has('message')
->where('message', 'The GET method is not supported for this route. Supported methods: POST.')
->where('message', 'The GET method is not supported for route v1/register. Supported methods: POST.')
->etc()
);
}
Expand Down

0 comments on commit 896b9fd

Please sign in to comment.