Browse Source

test: fix flags in coverage test

broken when fixing shellcheck errors
Anthony Romano 8 years ago
parent
commit
166e6918a6
1 changed files with 1 additions and 1 deletions
  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 / _)