Skip to content

Commit

Permalink
tests: fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
aozisik committed Aug 9, 2021
1 parent be507c7 commit 07bb7e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/SendGridChannelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function testEmailIsSentViaSendGrid()
);

$response = Mockery::mock(Response::class);
$response->shouldReceive('statusCode')->once()->andReturn(200);
$response->shouldReceive('statusCode')->andReturn(200);

$message = $notification->toSendGrid($notifiable);

Expand Down

0 comments on commit 07bb7e8

Please sign in to comment.