diff options
Diffstat (limited to 'ext/soap/tests/bugs/bug31695.phpt')
-rw-r--r-- | ext/soap/tests/bugs/bug31695.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/soap/tests/bugs/bug31695.phpt b/ext/soap/tests/bugs/bug31695.phpt index 9def103726..6d3fae0d25 100644 --- a/ext/soap/tests/bugs/bug31695.phpt +++ b/ext/soap/tests/bugs/bug31695.phpt @@ -14,7 +14,7 @@ class LocalSoapClient extends SoapClient { function __construct($wsdl, $options=array()) { parent::__construct($wsdl, $options); $this->server = new SoapServer($wsdl, $options); - $this->server->addFunction("Test"); + $this->server->addFunction("Test"); } function __doRequest($request, $location, $action, $version, $one_way = 0) { @@ -31,7 +31,7 @@ $client = new LocalSoapClient(dirname(__FILE__)."/bug31695.wsdl"); $client->Test("str"); $client = new LocalSoapClient(dirname(__FILE__)."/bug31695.wsdl", array("location"=>"test://1")); $client->Test("str"); -$client->__soapCall("Test", +$client->__soapCall("Test", array("arg1"), array("location"=>"test://2")); $old = $client->__setLocation("test://3"); |