Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
dwightwatson committed Oct 29, 2023
1 parent 4205d18 commit cf81393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/ApnChannelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function it_can_send_a_notification_with_custom_client()
$customClient->shouldReceive('addNotification');
$customClient->shouldReceive('push')->once();

$this->channel->send(new TestNotifiable, (new TestNotificationWithClient($customClient)));
$this->channel->send(new TestNotifiable, new TestNotificationWithClient($customClient));
}

/** @test */
Expand Down
2 changes: 1 addition & 1 deletion tests/ApnVoipChannelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function it_can_send_a_notification_with_custom_client()
$customClient->shouldReceive('addNotification');
$customClient->shouldReceive('push')->once();

$this->channel->send(new TestNotifiable, (new TestNotificationWithClient($customClient)));
$this->channel->send(new TestNotifiable, new TestNotificationWithClient($customClient));
}

/** @test */
Expand Down

0 comments on commit cf81393

Please sign in to comment.