We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cd88921 + 7e86f90 commit 23e807aCopy full SHA for 23e807a
Test/HttpClientTestCase.php
@@ -869,7 +869,7 @@ public function testProxy()
869
870
$body = $response->toArray();
871
$this->assertSame('localhost:8057', $body['HTTP_HOST']);
872
- $this->assertRegexp('#^http://(localhost|127\.0\.0\.1):8057/$#', $body['REQUEST_URI']);
+ $this->assertMatchesRegularExpression('#^http://(localhost|127\.0\.0\.1):8057/$#', $body['REQUEST_URI']);
873
874
$response = $client->request('GET', 'http://localhost:8057/', [
875
'proxy' => 'http://foo:b%3Dar@localhost:8057',
0 commit comments