diff options
Diffstat (limited to 'ext/soap/tests/schema/schema075.phpt')
-rw-r--r-- | ext/soap/tests/schema/schema075.phpt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/soap/tests/schema/schema075.phpt b/ext/soap/tests/schema/schema075.phpt index 5867e55a7c..eb3729a9b2 100644 --- a/ext/soap/tests/schema/schema075.phpt +++ b/ext/soap/tests/schema/schema075.phpt @@ -6,11 +6,11 @@ SOAP XML Schema 75: Attributes form qualified/unqualified (attributeFormDefault= <?php include "test_schema.inc"; $schema = <<<EOF - <complexType name="testType"> - <attribute name="int1" type="int"/> - <attribute name="int2" type="int" form="qualified"/> - <attribute name="int3" type="int" form="unqualified"/> - </complexType> + <complexType name="testType"> + <attribute name="int1" type="int"/> + <attribute name="int2" type="int" form="qualified"/> + <attribute name="int3" type="int" form="unqualified"/> + </complexType> EOF; test_schema($schema,'type="tns:testType"',(object)array("int1"=>1.1,"int2"=>2.2,"int3"=>3.3), "rpc", "encoded", 'attributeFormDefault="qualified"'); |