Skip to content

Commit 2b9a036

Browse files
committed
Tweak previous merge
1 parent f2d88d5 commit 2b9a036

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Tests/DataCollector/HttpClientDataCollectorTest.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public function testItGeneratesCurlCommandsAsExpected()
189189
--header 'Accept: */*' \\
190190
--header 'Accept-Encoding: gzip' \\
191191
--header 'User-Agent: Symfony HttpClient/Native'", $curlCommand
192-
);
192+
);
193193
}
194194

195195
/**
@@ -215,7 +215,7 @@ public function testItDoesNotFollowRedirectionsWhenGeneratingCurlCommands()
215215
--header 'Accept: */*' \\
216216
--header 'Accept-Encoding: gzip' \\
217217
--header 'User-Agent: Symfony HttpClient/Native'", $curlCommand
218-
);
218+
);
219219
}
220220

221221
/**
@@ -237,8 +237,7 @@ public function testItDoesNotGeneratesCurlCommandsForUnsupportedBodyType()
237237
$collectedData = $sut->getClients();
238238
self::assertCount(1, $collectedData['http_client']['traces']);
239239
$curlCommand = $collectedData['http_client']['traces'][0]['curlCommand'];
240-
self::assertNull($curlCommand
241-
);
240+
self::assertNull($curlCommand);
242241
}
243242

244243
private function httpClientThatHasTracedRequests($tracedRequests): TraceableHttpClient

0 commit comments

Comments
 (0)