From f0793b874cf254fef79bc70ed91c382268bf4cd8 Mon Sep 17 00:00:00 2001 From: chris erway Date: Thu, 9 Sep 2021 11:20:03 -0400 Subject: [PATCH] fix issue with checking RUN_EXPECT when listing packages --- test/scripts/e2e_go_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/scripts/e2e_go_tests.sh b/test/scripts/e2e_go_tests.sh index c829170e5e..1368f99e26 100755 --- a/test/scripts/e2e_go_tests.sh +++ b/test/scripts/e2e_go_tests.sh @@ -109,7 +109,7 @@ if [[ "${ARCHTYPE}" = arm* ]]; then fi PACKAGES="./..." -if [ "$RUN_EXPECT" != "" ]; then +if [ "$RUN_EXPECT" = "TRUE" ]; then PACKAGES=$(go list ./...|grep expect) fi