diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/HTTP_POST_multipartTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/HTTP_POST_multipartTest.php b/test/HTTP_POST_multipartTest.php index 373848c..362151c 100644 --- a/test/HTTP_POST_multipartTest.php +++ b/test/HTTP_POST_multipartTest.php @@ -24,8 +24,8 @@ class HTTP_POST_multipartTest extends PHPUnit_Framework_TestCase { public function providerBuildDataPart() { return array( - array(null, null, 'Exception'), - array('foo', 1, "Content-Disposition: form-data; name=\"foo\"\r\n\r\n1\r\n") + array(null, null, null, 'Exception'), + array('foo', 1, "Content-Disposition: form-data; name=\"foo\"\r\n\r\n1\r\n", null) ); } |