diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/mod-fastcgi.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mod-fastcgi.t b/tests/mod-fastcgi.t index 880344f2..63c7b152 100755 --- a/tests/mod-fastcgi.t +++ b/tests/mod-fastcgi.t @@ -359,7 +359,7 @@ EOF $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'test123' } ]; ok($tf->handle_http($t) == 0, 'killing fastcgi and wait for restart'); - select(undef, undef, undef, 2); + select(undef, undef, undef, .2); $t->{REQUEST} = ( <<EOF GET /index.fcgi?die-at-end HTTP/1.0 Host: www.example.org @@ -369,7 +369,7 @@ EOF ok($tf->handle_http($t) == 0, 'killing fastcgi and wait for restart'); - select(undef, undef, undef, 2); + select(undef, undef, undef, .2); $t->{REQUEST} = ( <<EOF GET /index.fcgi?crlf HTTP/1.0 Host: www.example.org |