summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-02-20 07:24:20 +0100
committerAnatol Belski <ab@php.net>2018-02-20 07:25:44 +0100
commit377f346354e4ce5d4a95a00a3f5634e9598732bc (patch)
tree118a99dc98df48aa24d15550d674c469cd86403a /run-tests.php
parent9439dd0b5b1cbd033bc3bdd7b2215801d4ec9978 (diff)
downloadphp-git-377f346354e4ce5d4a95a00a3f5634e9598732bc.tar.gz
Fix conjugation
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php4
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);
}
}
}