File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/Symfony/Component/Notifier/Bridge Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public function testSupportsMessageInterface(): void
32
32
$ transport = $ this ->getTransport ();
33
33
34
34
$ this ->assertTrue ($ transport ->supports (new SmsMessage ('0611223344 ' , 'Hello! ' )));
35
- $ this ->assertFalse ($ transport ->supports ($ this ->createMock (MessageInterface::class), ' Hello! ' ));
35
+ $ this ->assertFalse ($ transport ->supports ($ this ->createMock (MessageInterface::class)));
36
36
}
37
37
38
38
public function testSendNonSmsMessageThrowsException (): void
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public function testSupportsMessageInterface(): void
35
35
$ transport = $ this ->initTransport ();
36
36
37
37
$ this ->assertTrue ($ transport ->supports (new SmsMessage ('0611223344 ' , 'Hello! ' )));
38
- $ this ->assertFalse ($ transport ->supports ($ this ->createMock (MessageInterface::class), ' Hello! ' ));
38
+ $ this ->assertFalse ($ transport ->supports ($ this ->createMock (MessageInterface::class)));
39
39
}
40
40
41
41
public function testSendNonSmsMessageThrowsException (): void
You can’t perform that action at this time.
0 commit comments