From 696092e2875d222304cf2bf00b8d1361f0c128d2 Mon Sep 17 00:00:00 2001 From: kinggo <30891428+longlihale@users.noreply.github.com> Date: Wed, 13 Oct 2021 14:41:33 +0800 Subject: [PATCH] update tests' go.mod and tests_all.sh (#4774) --- tests/go.mod | 4 ++-- tests/tests_all.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/go.mod b/tests/go.mod index 6df53d7f..e18dc1dc 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -9,8 +9,8 @@ require ( gorm.io/driver/mysql v1.1.2 gorm.io/driver/postgres v1.1.2 gorm.io/driver/sqlite v1.1.6 - gorm.io/driver/sqlserver v1.0.9 - gorm.io/gorm v1.21.15 + gorm.io/driver/sqlserver v1.1.0 + gorm.io/gorm v1.21.16 ) replace gorm.io/gorm => ../ diff --git a/tests/tests_all.sh b/tests/tests_all.sh index f5657df1..79e0b5b7 100755 --- a/tests/tests_all.sh +++ b/tests/tests_all.sh @@ -9,7 +9,7 @@ fi if [ -d tests ] then cd tests - go get -u ./... + go get -u -t ./... go mod download go mod tidy cd ..