From 9dd26be5ea8f943216e2a0f4c9e9b099b32cbc22 Mon Sep 17 00:00:00 2001 From: Manan Gupta <35839558+GuptaManan100@users.noreply.github.com> Date: Mon, 29 Apr 2024 22:23:29 +0530 Subject: [PATCH] Fix unit-test-runner bug (#15815) Signed-off-by: Manan Gupta --- tools/unit_test_runner.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/unit_test_runner.sh b/tools/unit_test_runner.sh index 2cfa02c5cc7..d48f7162a4b 100755 --- a/tools/unit_test_runner.sh +++ b/tools/unit_test_runner.sh @@ -59,8 +59,7 @@ if [[ "$VTEVALENGINETEST" == "1" ]]; then fi if [[ "$VTEVALENGINETEST" == "0" ]]; then - # shellcheck disable=SC2086 - packages_with_tests=$(echo $packages_with_tests | grep -v "evalengine") + packages_with_tests=$(echo "$packages_with_tests" | grep -v "evalengine") fi # Flaky tests have the suffix "_flaky_test.go".