summaryrefslogtreecommitdiff
path: root/Zend/tests/bug26696.phpt
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-01-25 13:19:16 +0000
committerMarcus Boerger <helly@php.net>2004-01-25 13:19:16 +0000
commitdb864753673ad8c67cb5169c794b49dbd848ff63 (patch)
tree4de02ef044ea2b28863317b25ca06951970adca8 /Zend/tests/bug26696.phpt
parentbec76cab71e6e61fcb8e02de6d1a6bb6890b92a7 (diff)
downloadphp-git-db864753673ad8c67cb5169c794b49dbd848ff63.tar.gz
Update test
Diffstat (limited to 'Zend/tests/bug26696.phpt')
-rwxr-xr-xZend/tests/bug26696.phpt6
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