summaryrefslogtreecommitdiff
path: root/ext/soap/tests/schema/schema002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/soap/tests/schema/schema002.phpt')
-rw-r--r--ext/soap/tests/schema/schema002.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/soap/tests/schema/schema002.phpt b/ext/soap/tests/schema/schema002.phpt
index 41f3bbe3fa..66485aa205 100644
--- a/ext/soap/tests/schema/schema002.phpt
+++ b/ext/soap/tests/schema/schema002.phpt
@@ -6,12 +6,12 @@ SOAP XML Schema 2: simpleType/restriction (reference to type)
<?php
include "test_schema.inc";
$schema = <<<EOF
- <simpleType name="testType2">
- <restriction base="xsd:int"/>
- </simpleType>
- <simpleType name="testType">
- <restriction base="tns:testType2"/>
- </simpleType>
+ <simpleType name="testType2">
+ <restriction base="xsd:int"/>
+ </simpleType>
+ <simpleType name="testType">
+ <restriction base="tns:testType2"/>
+ </simpleType>
EOF;
test_schema($schema,'type="tns:testType"',123.5);
echo "ok";