diff options
Diffstat (limited to 'ext/soap/tests/schema/schema032.phpt')
-rw-r--r-- | ext/soap/tests/schema/schema032.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/soap/tests/schema/schema032.phpt b/ext/soap/tests/schema/schema032.phpt index 47b4af121c..397636083c 100644 --- a/ext/soap/tests/schema/schema032.phpt +++ b/ext/soap/tests/schema/schema032.phpt @@ -6,12 +6,12 @@ SOAP XML Schema 32: Structure (choice) <?php include "test_schema.inc"; $schema = <<<EOF - <complexType name="testType"> - <choice> - <element name="int" type="int"/> - <element name="str" type="string"/> - </choice> - </complexType> + <complexType name="testType"> + <choice> + <element name="int" type="int"/> + <element name="str" type="string"/> + </choice> + </complexType> EOF; test_schema($schema,'type="tns:testType"',(object)array("int"=>123.5)); echo "ok"; |