diff options
author | uckelman <uckelman@nomic.net> | 2010-05-09 15:26:42 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-05-09 15:26:42 +0000 |
commit | 7daaa9f12a189842d46e776de3a70f583bef1924 (patch) | |
tree | 8042d25a5bee7a733bde99e8ba188543786e6b17 | |
parent | ddbb36943699827bd11b0c47a9bded7e7c797dee (diff) |
Added missing test argument.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6811 67b53d14-2c14-4ace-a08f-0dab2b34000c
-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) ); } |