From: Anatol Belski Date: Tue, 20 Feb 2018 06:24:20 +0000 (+0100) Subject: Fix conjugation X-Git-Tag: php-7.3.0alpha1~331 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=377f346354e4ce5d4a95a00a3f5634e9598732bc;p=php Fix conjugation --- diff --git a/run-tests.php b/run-tests.php index 9dce9ffe37..4a57b83bbf 100755 --- a/run-tests.php +++ b/run-tests.php @@ -783,7 +783,7 @@ HELP; } else if (preg_match("/\*$/", $argv[$i])) { $pattern_match = glob($argv[$i] . '.phpt'); } else { - die('Cannot found test file "' . $argv[$i] . '".' . PHP_EOL); + die('Cannot find test file "' . $argv[$i] . '".' . PHP_EOL); } if (is_array($pattern_match)) { @@ -795,7 +795,7 @@ HELP; } else if (preg_match("/\.phpt$/", $testfile)) { $test_files[] = $testfile; } else { - die('Cannot found test file "' . $argv[$i] . '".' . PHP_EOL); + die('Cannot find test file "' . $argv[$i] . '".' . PHP_EOL); } } }