diff options
Diffstat (limited to 'ext/soap/tests/schema/schema053.phpt')
-rw-r--r-- | ext/soap/tests/schema/schema053.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/soap/tests/schema/schema053.phpt b/ext/soap/tests/schema/schema053.phpt index 8893bf5df3..f276978a4c 100644 --- a/ext/soap/tests/schema/schema053.phpt +++ b/ext/soap/tests/schema/schema053.phpt @@ -6,12 +6,12 @@ SOAP XML Schema 52: Array in complex type (maxOccurs > 1, empty array) <?php include "test_schema.inc"; $schema = <<<EOF - <complexType name="testType"> - <sequence> - <element name="int" type="int"/> - <element name="int2" type="int" minOccurs="0" maxOccurs="unbounded"/> - </sequence> - </complexType> + <complexType name="testType"> + <sequence> + <element name="int" type="int"/> + <element name="int2" type="int" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + </complexType> EOF; test_schema($schema,'type="tns:testType"',(object)array("int"=>123.5,"int2"=>array())); echo "ok"; |