@@ -83,7 +83,7 @@ public function it_can_send_a_status_update_notification_with_videos()
8383 $ status = new stdClass ;
8484 $ status ->media_id_string = '2 ' ;
8585 $ status ->processing_info = new stdClass ;
86- $ status ->processing_info ->state = " completed " ;
86+ $ status ->processing_info ->state = ' completed ' ;
8787
8888 $ this ->twitter ->shouldReceive ('setTimeouts ' )
8989 ->once ()
@@ -102,8 +102,8 @@ public function it_can_send_a_status_update_notification_with_videos()
102102 ->once ()
103103 ->with ('media/upload ' , [
104104 'media ' => public_path ('video.mp4 ' ),
105- 'media_category ' => " tweet_video " ,
106- 'media_type ' => " video/mp4 "
105+ 'media_category ' => ' tweet_video ' ,
106+ 'media_type ' => ' video/mp4 ' ,
107107 ], true )
108108 ->andReturn ($ media );
109109
@@ -173,9 +173,9 @@ public function it_throws_an_exception_when_it_could_not_send_the_notification_w
173173 $ status = new stdClass ;
174174 $ status ->media_id_string = '2 ' ;
175175 $ status ->processing_info = new stdClass ;
176- $ status ->processing_info ->state = " failed " ;
176+ $ status ->processing_info ->state = ' failed ' ;
177177 $ status ->processing_info ->error = new stdClass ;
178- $ status ->processing_info ->error ->message = " invalid media " ;
178+ $ status ->processing_info ->error ->message = ' invalid media ' ;
179179
180180 $ this ->twitter ->shouldReceive ('setTimeouts ' )
181181 ->once ()
@@ -185,8 +185,8 @@ public function it_throws_an_exception_when_it_could_not_send_the_notification_w
185185 ->once ()
186186 ->with ('media/upload ' , [
187187 'media ' => public_path ('video.mp4 ' ),
188- 'media_category ' => " tweet_video " ,
189- 'media_type ' => " video/mp4 "
188+ 'media_category ' => ' tweet_video ' ,
189+ 'media_type ' => ' video/mp4 ' ,
190190 ], true )
191191 ->andReturn ($ media );
192192
0 commit comments