Skip to content

Commit d3c9585

Browse files
committed
[skip ci] Fix diff cmd env name in run-tests.php
1 parent f415ba6 commit d3c9585

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-tests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2972,7 +2972,7 @@ function generate_diff_external(string $diff_cmd, string $exp_file, string $outp
29722972
{
29732973
$retval = shell_exec("{$diff_cmd} {$exp_file} {$output_file}");
29742974

2975-
return is_string($retval) ? $retval : 'Could not run external diff tool set through PHP_TEST_DIFF_CMD environment variable';
2975+
return is_string($retval) ? $retval : 'Could not run external diff tool set through TEST_PHP_DIFF_CMD environment variable';
29762976
}
29772977

29782978
function generate_diff(string $wanted, ?string $wanted_re, string $output): string

0 commit comments

Comments
 (0)