diff options
author | Anatol Belski <ab@php.net> | 2018-02-20 07:24:20 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2018-02-20 07:25:44 +0100 |
commit | 377f346354e4ce5d4a95a00a3f5634e9598732bc (patch) | |
tree | 118a99dc98df48aa24d15550d674c469cd86403a /run-tests.php | |
parent | 9439dd0b5b1cbd033bc3bdd7b2215801d4ec9978 (diff) | |
download | php-git-377f346354e4ce5d4a95a00a3f5634e9598732bc.tar.gz |
Fix conjugation
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 4 |
1 files changed, 2 insertions, 2 deletions
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); } } } |