@@ -508,7 +508,7 @@ public function testFollowRedirectWithHeaders()
508508 {
509509 $ headers = [
510510 'HTTP_HOST ' => 'www.example.com ' ,
511- 'HTTP_USER_AGENT ' => 'SymfonyBrowserKit ' ,
511+ 'HTTP_USER_AGENT ' => 'Symfony BrowserKit ' ,
512512 'CONTENT_TYPE ' => 'application/vnd.custom+xml ' ,
513513 'HTTPS ' => false ,
514514 ];
@@ -535,7 +535,7 @@ public function testFollowRedirectWithPort()
535535 {
536536 $ headers = [
537537 'HTTP_HOST ' => 'www.example.com:8080 ' ,
538- 'HTTP_USER_AGENT ' => 'SymfonyBrowserKit ' ,
538+ 'HTTP_USER_AGENT ' => 'Symfony BrowserKit ' ,
539539 'HTTPS ' => false ,
540540 'HTTP_REFERER ' => 'http://www.example.com:8080/ ' ,
541541 ];
@@ -755,7 +755,7 @@ public function testGetServerParameter()
755755 {
756756 $ client = $ this ->getBrowser ();
757757 $ this ->assertSame ('' , $ client ->getServerParameter ('HTTP_HOST ' ));
758- $ this ->assertSame ('SymfonyBrowserKit ' , $ client ->getServerParameter ('HTTP_USER_AGENT ' ));
758+ $ this ->assertSame ('Symfony BrowserKit ' , $ client ->getServerParameter ('HTTP_USER_AGENT ' ));
759759 $ this ->assertSame ('testvalue ' , $ client ->getServerParameter ('testkey ' , 'testvalue ' ));
760760 }
761761
@@ -764,7 +764,7 @@ public function testSetServerParameter()
764764 $ client = $ this ->getBrowser ();
765765
766766 $ this ->assertSame ('' , $ client ->getServerParameter ('HTTP_HOST ' ));
767- $ this ->assertSame ('SymfonyBrowserKit ' , $ client ->getServerParameter ('HTTP_USER_AGENT ' ));
767+ $ this ->assertSame ('Symfony BrowserKit ' , $ client ->getServerParameter ('HTTP_USER_AGENT ' ));
768768
769769 $ client ->setServerParameter ('HTTP_HOST ' , 'testhost ' );
770770 $ this ->assertSame ('testhost ' , $ client ->getServerParameter ('HTTP_HOST ' ));
@@ -778,7 +778,7 @@ public function testSetServerParameterInRequest()
778778 $ client = $ this ->getBrowser ();
779779
780780 $ this ->assertSame ('' , $ client ->getServerParameter ('HTTP_HOST ' ));
781- $ this ->assertSame ('SymfonyBrowserKit ' , $ client ->getServerParameter ('HTTP_USER_AGENT ' ));
781+ $ this ->assertSame ('Symfony BrowserKit ' , $ client ->getServerParameter ('HTTP_USER_AGENT ' ));
782782
783783 $ client ->request ('GET ' , 'https://www.example.com/https/www.example.com ' , [], [], [
784784 'HTTP_HOST ' => 'testhost ' ,
@@ -788,7 +788,7 @@ public function testSetServerParameterInRequest()
788788 ]);
789789
790790 $ this ->assertSame ('' , $ client ->getServerParameter ('HTTP_HOST ' ));
791- $ this ->assertSame ('SymfonyBrowserKit ' , $ client ->getServerParameter ('HTTP_USER_AGENT ' ));
791+ $ this ->assertSame ('Symfony BrowserKit ' , $ client ->getServerParameter ('HTTP_USER_AGENT ' ));
792792
793793 $ this ->assertSame ('https://www.example.com/https/www.example.com ' , $ client ->getRequest ()->getUri ());
794794
0 commit comments