@@ -767,7 +767,7 @@ public function testGzipBroken()
767
767
public function testJsonRegexBuffer (): void
768
768
{
769
769
$ client = $ this ->getHttpClient (__FUNCTION__ );
770
- $ response = $ client ->request ('GET ' , 'https ://jsonplaceholder.typicode.com/users ' , ['buffer ' => '/([a-z]+\/json)/ ' ]);
770
+ $ response = $ client ->request ('GET ' , 'http ://localhost:8057 ' , ['buffer ' => '/([a-z]+\/json)/ ' ]);
771
771
772
772
$ firstContent = $ response ->getContent ();
773
773
$ secondContent = $ response ->getContent ();
@@ -781,7 +781,7 @@ public function testJsonRegexBuffer(): void
781
781
public function testFalseBuffer (): void
782
782
{
783
783
$ client = $ this ->getHttpClient (__FUNCTION__ );
784
- $ response = $ client ->request ('GET ' , 'https ://jsonplaceholder.typicode.com/users ' , ['buffer ' => false ]);
784
+ $ response = $ client ->request ('GET ' , 'http ://localhost:8057 ' , ['buffer ' => false ]);
785
785
786
786
$ firstPosts = $ response ->getContent ();
787
787
$ secondPosts = $ response ->getContent ();
@@ -793,7 +793,7 @@ public function testFalseBuffer(): void
793
793
public function testInvalidRegexBuffer (): void
794
794
{
795
795
$ client = $ this ->getHttpClient (__FUNCTION__ );
796
- $ response = $ client ->request ('GET ' , 'https ://jsonplaceholder.typicode.com/users ' , ['buffer ' => '/([a-z]+\/json))/ ' ]);
796
+ $ response = $ client ->request ('GET ' , 'http ://localhost:8057 ' , ['buffer ' => '/([a-z]+\/json))/ ' ]);
797
797
798
798
$ firstPosts = $ response ->getContent ();
799
799
$ secondPosts = $ response ->getContent ();
0 commit comments