1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix conjugation

This commit is contained in:
Anatol Belski
2018-02-20 07:24:20 +01:00
parent 9439dd0b5b
commit 377f346354

View File

@@ -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);
}
}
}