Skip to content

Commit 39703f2

Browse files
keradusnicolas-grekas
authored andcommitted
chore: PHP CS Fixer fixes
1 parent 5566822 commit 39703f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tests/NoPrivateNetworkHttpClientTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,13 +178,14 @@ public function testNonCallableOnProgressCallback()
178178
public function testHeadersArePassedOnRedirect()
179179
{
180180
$ipAddr = '104.26.14.6';
181-
$url = sprintf('http://%s/', $ipAddr);
181+
$url = \sprintf('http://%s/', $ipAddr);
182182
$content = 'foo';
183183

184184
$callback = function ($method, $url, $options) use ($content): MockResponse {
185185
$this->assertArrayHasKey('headers', $options);
186186
$this->assertNotContains('content-type: application/json', $options['headers']);
187187
$this->assertContains('foo: bar', $options['headers']);
188+
188189
return new MockResponse($content);
189190
};
190191
$responses = [

0 commit comments

Comments
 (0)