From: Moriyoshi Koizumi Date: Mon, 21 Oct 2002 10:23:31 +0000 (+0000) Subject: Fixed typo. X-Git-Tag: php-4.3.0pre2~237 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a26a849bb3dbd85f19f12d5bd074f35ce2070b25;p=php Fixed typo. --- diff --git a/run-tests.php b/run-tests.php index 2185480126..2304f69c0d 100755 --- a/run-tests.php +++ b/run-tests.php @@ -435,7 +435,7 @@ TEST $file @unlink($tmp_skipif); if (ereg("^skip", trim($output))){ echo "SKIP $tested"; - $reason = (ereg("^skip[[:space:]]*(.+)\$", trim($output))) ? ereg_replace("^^skip[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE; + $reason = (ereg("^skip[[:space:]]*(.+)\$", trim($output))) ? ereg_replace("^skip[[:space:]]*(.+)\$", "\\1", trim($output)) : FALSE; if ($reason) { echo " (reason: $reason)\n"; } else {