Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
[zendframework/zendframework#1220] Add curl opts to adapter
Browse files Browse the repository at this point in the history
- Added CURLOPT_INFILESIZE to adapter config to fix error in tests
  • Loading branch information
weierophinney committed May 18, 2012
1 parent d976b4b commit 55a086d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/Client/CurlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ class CurlTest extends CommonHttpTests
* @var array
*/
protected $config = array(
'adapter' => 'Zend\Http\Client\Adapter\Curl'
'adapter' => 'Zend\Http\Client\Adapter\Curl',
'curloptions' => array(
CURLOPT_INFILESIZE => 102400000,
),
);

protected function setUp()
Expand Down

0 comments on commit 55a086d

Please sign in to comment.