Skip to content

Commit a9319a5

Browse files
committed
Fix CS
1 parent 22622fc commit a9319a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/CachingHttpClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function testRemovesXContentDigest()
8989
'test', [
9090
'response_headers' => [
9191
'X-Content-Digest' => 'some-hash',
92-
]
92+
],
9393
]));
9494
$headers = $response->getHeaders();
9595

@@ -100,7 +100,7 @@ private function runRequest(MockResponse $mockResponse): ResponseInterface
100100
{
101101
$mockClient = new MockHttpClient($mockResponse);
102102

103-
$store = new Store(sys_get_temp_dir() . '/sf_http_cache');
103+
$store = new Store(sys_get_temp_dir().'/sf_http_cache');
104104
$client = new CachingHttpClient($mockClient, $store);
105105

106106
$response = $client->request('GET', 'http://test');

0 commit comments

Comments
 (0)