Procházet zdrojové kódy

test: fix flags in coverage test

broken when fixing shellcheck errors
Anthony Romano před 8 roky
rodič
revize
166e6918a6
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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 / _)