@@ -71,15 +71,15 @@ public function testExecute()
7171 ->with (
7272 $ this ->equalTo ('welcome ' ),
7373 $ this ->equalTo ($ this ->args ),
74- $ this ->equalTo ($ this ->headers )
74+ $ this ->equalTo ($ this ->headers ),
7575 )
7676 ->willReturn (['Message sent ' ]);
7777
7878 $ this ->job ->expects ($ this ->once ())
7979 ->method ('getMailer ' )
8080 ->with (
8181 $ this ->equalTo ('SampleTest ' ),
82- $ this ->equalTo ($ this ->mailerConfig )
82+ $ this ->equalTo ($ this ->mailerConfig ),
8383 )->willReturn ($ this ->mailer );
8484
8585 $ message = $ this ->createMessage ();
@@ -101,7 +101,7 @@ public function testExecuteMissingMailerException()
101101 ->method ('getMailer ' )
102102 ->with (
103103 $ this ->equalTo ('SampleTest ' ),
104- $ this ->equalTo ($ this ->mailerConfig )
104+ $ this ->equalTo ($ this ->mailerConfig ),
105105 )->willThrowException (new MissingMailerException ('Missing mailer for testExecuteMissingMailerException ' ));
106106
107107 $ message = $ this ->createMessage ();
@@ -121,15 +121,15 @@ public function testExecuteBadMethodCallException()
121121 ->with (
122122 $ this ->equalTo ('welcome ' ),
123123 $ this ->equalTo ($ this ->args ),
124- $ this ->equalTo ($ this ->headers )
124+ $ this ->equalTo ($ this ->headers ),
125125 )
126126 ->willThrowException (new BadMethodCallException ('Welcome is not a valid method ' ));
127127
128128 $ this ->job ->expects ($ this ->once ())
129129 ->method ('getMailer ' )
130130 ->with (
131131 $ this ->equalTo ('SampleTest ' ),
132- $ this ->equalTo ($ this ->mailerConfig )
132+ $ this ->equalTo ($ this ->mailerConfig ),
133133 )->willReturn ($ this ->mailer );
134134
135135 $ message = $ this ->createMessage ();
0 commit comments