summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_016.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/ns_016.phpt')
-rwxr-xr-xZend/tests/ns_016.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/ns_016.phpt b/Zend/tests/ns_016.phpt
index e278625e61..bee8b5bee3 100755
--- a/Zend/tests/ns_016.phpt
+++ b/Zend/tests/ns_016.phpt
@@ -2,13 +2,13 @@
016: Run-time name conflict and functions (ns name)
--FILE--
<?php
-namespace test::ns1;
+namespace test\ns1;
function strlen($x) {
return __FUNCTION__;
}
-$x = "test::ns1::strlen";
+$x = "test\\ns1\\strlen";
echo $x("Hello"),"\n";
--EXPECT--
-test::ns1::strlen
+test\ns1\strlen