diff options
Diffstat (limited to 'ext/soap/tests/schema/schema042.phpt')
-rw-r--r-- | ext/soap/tests/schema/schema042.phpt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/soap/tests/schema/schema042.phpt b/ext/soap/tests/schema/schema042.phpt index a8aa8857d9..c0a938aa27 100644 --- a/ext/soap/tests/schema/schema042.phpt +++ b/ext/soap/tests/schema/schema042.phpt @@ -6,13 +6,13 @@ SOAP XML Schema 42: Extension of simple type <?php include "test_schema.inc"; $schema = <<<EOF - <complexType name="testType"> - <simpleContent> - <extension base="int"> - <attribute name="int" type="int"/> - </extension> - </simpleContent> - </complexType> + <complexType name="testType"> + <simpleContent> + <extension base="int"> + <attribute name="int" type="int"/> + </extension> + </simpleContent> + </complexType> EOF; test_schema($schema,'type="tns:testType"',(object)array("_"=>123.5,"int"=>123.5)); echo "ok"; |