Skip to content

Commit

Permalink
- Merge [4723].
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Mar 22, 2009
1 parent c1c25bb commit c46e578
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PHPUnit/Extensions/SeleniumTestCase/Driver.php
Expand Up @@ -818,7 +818,7 @@ protected function doCommand($command, array $arguments = array())
$context = stream_context_create( $context = stream_context_create(
array( array(
'http' => array( 'http' => array(
'timeout' => $this->timeout / 1000 'timeout' => ($this->timeout / 1000) + 5
) )
) )
); );
Expand All @@ -832,7 +832,7 @@ protected function doCommand($command, array $arguments = array())
} }


stream_set_blocking($handle, 1); stream_set_blocking($handle, 1);
stream_set_timeout($handle, 0, $this->timeout); stream_set_timeout($handle, 0, $this->timeout + 5);


$info = stream_get_meta_data($handle); $info = stream_get_meta_data($handle);
$response = ''; $response = '';
Expand Down

0 comments on commit c46e578

Please sign in to comment.