update Ginkgo to v1.16.4 and Gomega to v1.13.0

This commit is contained in:
Marten Seemann
2021-04-04 15:09:56 +07:00
parent 2945227751
commit f4f6ce97d7
4 changed files with 47 additions and 14 deletions

View File

@@ -7,7 +7,7 @@ set -e
HAS_TESTING=false
cd ..
for f in $(find . -name "*.go" ! -name "*_test.go"); do
for f in $(find . -name "*.go" ! -name "*_test.go" ! -name "tools.go"); do
if grep -q "github.com/onsi/ginkgo" $f; then
echo "$f imports github.com/onsi/ginkgo"
HAS_TESTING=true