From a4cf4eb991f375724426d7b466c0705386ad7da3 Mon Sep 17 00:00:00 2001 From: Mark Jung Date: Wed, 29 May 2019 21:52:00 -0500 Subject: [PATCH] removed flag from test command (#1257) fixes make test-unit by removing an outdated flag from the test command --- scripts/test_unit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test_unit.sh b/scripts/test_unit.sh index 1b3b4ddf..5451bd06 100755 --- a/scripts/test_unit.sh +++ b/scripts/test_unit.sh @@ -18,4 +18,4 @@ export GO111MODULE=on # Run the unit tests with the race detector and code coverage enabled set -xeuo pipefail -go test -mod=vendor -race -coverprofile cover.out -covermode atomic ./... +go test -race -coverprofile cover.out -covermode atomic ./...