From 0490f082e9c1d218d5439b414caee780fa673a8b Mon Sep 17 00:00:00 2001 From: George Peter Banyard Date: Sat, 16 Jul 2022 13:35:58 +0530 Subject: [PATCH] [run-tests.php] echo call performance optimization --- run-tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.php b/run-tests.php index db3995dc9db..72c038219de 100755 --- a/run-tests.php +++ b/run-tests.php @@ -234,7 +234,7 @@ function main(): void // Not having other environment variables, only having TEMP, is // probably ok, but strange and may make a difference in the // test pass rate, so warn the user. - echo "WARNING: Only 1 environment variable will be available to tests(TEMP environment variable)" . PHP_EOL; + echo "WARNING: Only 1 environment variable will be available to tests(TEMP environment variable)" , PHP_EOL; } }