diff options
Diffstat (limited to 'Zend/tests/ns_006.phpt')
-rwxr-xr-x | Zend/tests/ns_006.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/ns_006.phpt b/Zend/tests/ns_006.phpt index 1c0ec3ab08..f4027408d4 100755 --- a/Zend/tests/ns_006.phpt +++ b/Zend/tests/ns_006.phpt @@ -2,12 +2,12 @@ 006: Run-time name conflict (ns name) --FILE-- <?php -namespace test\ns1; +namespace test::ns1; class Exception { } -$x = "test\\ns1\\Exception"; +$x = "test::ns1::Exception"; echo get_class(new $x),"\n"; --EXPECT-- -test\ns1\Exception +test::ns1::Exception |