diff options
Diffstat (limited to 'Zend/tests/ns_013.phpt')
-rwxr-xr-x | Zend/tests/ns_013.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/ns_013.phpt b/Zend/tests/ns_013.phpt index 945b6bc4ec..ef73b1395f 100755 --- a/Zend/tests/ns_013.phpt +++ b/Zend/tests/ns_013.phpt @@ -2,7 +2,7 @@ 013: Name conflict and functions (ns name) --FILE-- <?php -namespace test::ns1; +namespace test\ns1; function strlen($x) { return __FUNCTION__; @@ -10,4 +10,4 @@ function strlen($x) { echo strlen("Hello"),"\n"; --EXPECT-- -test::ns1::strlen +test\ns1\strlen |