File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class SMS implements DataTypeInterface
16
16
*
17
17
* @var string
18
18
*/
19
- protected $ separator = ': ' ;
19
+ protected $ separator = '&body= ' ;
20
20
21
21
/**
22
22
* The phone number.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public function test_it_generate_a_proper_format_with_a_message()
23
23
{
24
24
$ this ->sms ->create ([null , 'foo ' ]);
25
25
26
- $ properFormat = 'sms:: foo ' ;
26
+ $ properFormat = 'sms:&body= foo ' ;
27
27
28
28
$ this ->assertEquals ($ properFormat , strval ($ this ->sms ));
29
29
}
@@ -32,7 +32,7 @@ public function test_it_generates_a_proper_format_with_a_phone_number_and_messag
32
32
{
33
33
$ this ->sms ->create (['555-555-5555 ' , 'foo ' ]);
34
34
35
- $ properFormat = 'sms:555-555-5555: foo ' ;
35
+ $ properFormat = 'sms:555-555-5555&body= foo ' ;
36
36
37
37
$ this ->assertEquals ($ properFormat , strval ($ this ->sms ));
38
38
}
You can’t perform that action at this time.
0 commit comments