Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelMwangiW committed Jun 7, 2024
1 parent 22ac5cd commit 4a5d4bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/ValueObjects/Voice/DialTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
callerId: '+256706900900',
)->build(),
)->toBe(
'<Dial phoneNumbers="+254711123123,+254733321321" sequential="true" record="true" maxDuration="24" ringBackTone="http://mymediafile.com/playme.mp3" callerId="+256706900900"/>',
'<Dial phoneNumbers="+254711123123,+254733321321" sequential="true" record="true" maxDuration="24" ringbackTone="http://mymediafile.com/playme.mp3" callerId="+256706900900"/>',
);

it('sets the record option')
Expand Down Expand Up @@ -62,7 +62,7 @@
Dial::make(['+254711123123', '+254733321321'])
->ringBackTone('https://mymediafile.com/playme.mp3')
->build(),
)->toBe('<Dial phoneNumbers="+254711123123,+254733321321" sequential="false" record="false" ringBackTone="https://mymediafile.com/playme.mp3"/>');
)->toBe('<Dial phoneNumbers="+254711123123,+254733321321" sequential="false" record="false" ringbackTone="https://mymediafile.com/playme.mp3"/>');

it('sets maxDuration')
->expect(
Expand Down

0 comments on commit 4a5d4bc

Please sign in to comment.