File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/Symfony/Contracts/HttpClient/Test Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ install:
46
46
- php composer.phar self-update
47
47
- copy /Y .github\composer-config.json %APPDATA%\Composer\config.json
48
48
- php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex dev-master
49
+ - git config --global user.email ""
50
+ - git config --global user.name "Symfony"
49
51
- php .github/build-packages.php "HEAD^" src\Symfony\Bridge\PhpUnit src\Symfony\Contracts
50
52
- IF %APPVEYOR_REPO_BRANCH%==master (SET COMPOSER_ROOT_VERSION=dev-master) ELSE (SET COMPOSER_ROOT_VERSION=%APPVEYOR_REPO_BRANCH%.x-dev)
51
53
- php composer.phar update --no-progress --no-suggest --ansi
Original file line number Diff line number Diff line change @@ -597,9 +597,9 @@ public function testNotATimeout()
597
597
{
598
598
$ client = $ this ->getHttpClient (__FUNCTION__ );
599
599
$ response = $ client ->request ('GET ' , 'http://localhost:8057/timeout-header ' , [
600
- 'timeout ' => 0.5 ,
600
+ 'timeout ' => 0.9 ,
601
601
]);
602
- usleep (510000 );
602
+ usleep (1000000 );
603
603
$ this ->assertSame (200 , $ response ->getStatusCode ());
604
604
}
605
605
You can’t perform that action at this time.
0 commit comments