diff options
author | Marcus Boerger <helly@php.net> | 2004-01-25 13:19:16 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-01-25 13:19:16 +0000 |
commit | db864753673ad8c67cb5169c794b49dbd848ff63 (patch) | |
tree | 4de02ef044ea2b28863317b25ca06951970adca8 /Zend/tests/bug26696.phpt | |
parent | bec76cab71e6e61fcb8e02de6d1a6bb6890b92a7 (diff) | |
download | php-git-db864753673ad8c67cb5169c794b49dbd848ff63.tar.gz |
Update test
Diffstat (limited to 'Zend/tests/bug26696.phpt')
-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 |