Browse Source

test: fix flags in coverage test

broken when fixing shellcheck errors
Anthony Romano 8 năm trước cách đây
mục cha
commit
166e6918a6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      test

+ 1 - 1
test

@@ -161,7 +161,7 @@ function cov_pass {
 
 	# run code coverage for unit and integration tests
 	GOCOVFLAGS="-covermode=set -coverpkg ${PKGS_COMMA} -v -timeout 15m"
-	GOCOVFLAGS=($GOCOVFLGS)
+	GOCOVFLAGS=($GOCOVFLAGS)
 	failed=""
 	for t in $(echo "${TEST_PKGS}" | grep -vE "(e2e|functional-tester)"); do
 		tf=$(echo "$t" | tr / _)