diff options
-rwxr-xr-x | Zend/tests/bug26696.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug26696.phpt b/Zend/tests/bug26696.phpt index ca2ea0910e..62ceacda58 100755 --- a/Zend/tests/bug26696.phpt +++ b/Zend/tests/bug26696.phpt @@ -7,10 +7,10 @@ $len = strlen($str); for ($i = 0; $i < $len; $i++) { switch ($str[$i]) { case '?': - echo "?\n"; + echo "?+\n"; break; default: - echo "x"; + echo $str[$i].'-'; break; } } @@ -18,5 +18,5 @@ for ($i = 0; $i < $len; $i++) { ?> ===DONE=== --EXPECT-- -xxxxx? +a-s-d-d-/-?+ ===DONE===
\ No newline at end of file |