From 377f346354e4ce5d4a95a00a3f5634e9598732bc Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 20 Feb 2018 07:24:20 +0100 Subject: [PATCH] Fix conjugation --- run-tests.php | 4 ++-- 1 file 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); } } } -- 2.50.1