MDL-77354 tool_behat: Fix deprecated strlen() of null in PHP 8.1

This commit is contained in:
Huong Nguyen 2023-02-22 11:07:49 +07:00
parent 3312a6814a
commit 45877b9c1b

View File

@ -360,7 +360,7 @@ function print_combined_drop_output($processes) {
$op = $process->getIncrementalOutput();
if (trim($op)) {
$update = preg_filter('#^\s*([FS\.\-]+)(?:\s+\d+)?\s*$#', '$1', $op);
$strlentoprint = strlen($update);
$strlentoprint = $update ? strlen($update) : 0;
// If not enough dots printed on line then just print.
if ($strlentoprint < $remainingprintlen) {