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.
1 parent cca2910 commit 04d8c90Copy full SHA for 04d8c90
src/Symfony/Component/HttpClient/Tests/RetryableHttpClientTest.php
@@ -188,9 +188,9 @@ public function testCancelOnTimeout()
188
}
189
190
191
- public function testRetryWithDelay(): void
+ public function testRetryWithDelay()
192
{
193
- $retryAfter = "0.46";
+ $retryAfter = '0.46';
194
195
$client = new RetryableHttpClient(
196
new MockHttpClient([
@@ -201,7 +201,7 @@ public function testRetryWithDelay(): void
201
]
202
]),
203
new MockResponse('', [
204
- 'http_code' => 200,
+ 'http_code' => 200
205
206
207
new GenericRetryStrategy(),
0 commit comments