summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-05-09 15:26:42 +0000
committeruckelman <uckelman@nomic.net>2010-05-09 15:26:42 +0000
commit7daaa9f12a189842d46e776de3a70f583bef1924 (patch)
tree8042d25a5bee7a733bde99e8ba188543786e6b17 /test
parentddbb36943699827bd11b0c47a9bded7e7c797dee (diff)
Added missing test argument.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6811 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test')
-rw-r--r--test/HTTP_POST_multipartTest.php4
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)
);
}