Skip to content

Commit

Permalink
Update tests/Messaging/Adapter/SMS/SMSTest.php
Browse files Browse the repository at this point in the history
Co-authored-by: Christy Jacob <[email protected]>
  • Loading branch information
shimonewman and christyjacob4 authored May 8, 2024
1 parent 3b7dba7 commit 724ba39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Messaging/Adapter/SMS/SMSTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function testSendSMS(): void
$this->assertEquals('POST', $smsRequest['method']);
$this->assertEquals('+987654321', $smsRequest['data']['from']);
$this->assertEquals('+123456789', $smsRequest['data']['to']);
$this->assertEquals(9, $sender->getCountryCode($smsRequest['data']['from']));
$this->assertEquals(98, $sender->getCountryCode($smsRequest['data']['from']));
$this->assertEquals(1, $sender->getCountryCode($smsRequest['data']['to']));
}
}

0 comments on commit 724ba39

Please sign in to comment.