summaryrefslogtreecommitdiff
path: root/ext/soap/tests/schema/schema034.phpt
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2005-01-20 12:48:01 +0000
committerDmitry Stogov <dmitry@php.net>2005-01-20 12:48:01 +0000
commita830b0fc6b2c3651f0c8ed44b83708945efaca21 (patch)
treecde7dea81a1cfa77cbf2afe4652292d5564415b2 /ext/soap/tests/schema/schema034.phpt
parentdd2f5ed14233e546e410b0c393e7b022bc207094 (diff)
downloadphp-git-a830b0fc6b2c3651f0c8ed44b83708945efaca21.tar.gz
Fixed bug #31422 (No Error-Logging on SoapServer-Side).
Diffstat (limited to 'ext/soap/tests/schema/schema034.phpt')
-rw-r--r--ext/soap/tests/schema/schema034.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/soap/tests/schema/schema034.phpt b/ext/soap/tests/schema/schema034.phpt
index 995b0485e5..a83d6ea846 100644
--- a/ext/soap/tests/schema/schema034.phpt
+++ b/ext/soap/tests/schema/schema034.phpt
@@ -22,14 +22,14 @@ EOF;
test_schema($schema,'type="tns:testType"',(object)array("int"=>123.5,"testType2"=>array("int"=>123.5)));
echo "ok";
?>
---EXPECT--
+--EXPECTF--
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://test-uri/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType"><int xsi:type="xsd:int">123</int><testType2 xsi:type="ns1:testType2"><int xsi:type="xsd:int">123</int></testType2></testParam></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
-object(stdClass)#5 (2) {
+object(stdClass)#%d (2) {
["int"]=>
int(123)
["testType2"]=>
- object(stdClass)#6 (1) {
+ object(stdClass)#%d (1) {
["int"]=>
int(123)
}