]> granicus.if.org Git - php/commitdiff
Update test
authorMarcus Boerger <helly@php.net>
Sun, 25 Jan 2004 13:19:16 +0000 (13:19 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 25 Jan 2004 13:19:16 +0000 (13:19 +0000)
Zend/tests/bug26696.phpt

index ca2ea0910e6fe862a6d7fcae4f5229f073cc25c0..62ceacda58d3825d4408db58ded1e9a8115f20d1 100755 (executable)
@@ -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