aboutsummaryrefslogtreecommitdiff
path: root/internal/dbtest
diff options
context:
space:
mode:
authorJoe Chen <jc@unknwon.io>2023-02-02 21:25:25 +0800
committerGitHub <noreply@github.com>2023-02-02 21:25:25 +0800
commitc53a1998c589a544b25d53f6e6fdf0f24a4df25b (patch)
tree1c3c9d693ba551eecfbc535be942e40b5acf9cf7 /internal/dbtest
parent614382fec0ba05149785539ab93560d4d42c194d (diff)
all: replace `interface{}` with `any` (#7330)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Diffstat (limited to 'internal/dbtest')
-rw-r--r--internal/dbtest/dbtest.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/dbtest/dbtest.go b/internal/dbtest/dbtest.go
index 353a2952..4e6b7e6a 100644
--- a/internal/dbtest/dbtest.go
+++ b/internal/dbtest/dbtest.go
@@ -23,7 +23,7 @@ import (
// NewDB creates a new test database and initializes the given list of tables
// for the suite. The test database is dropped after testing is completed unless
// failed.
-func NewDB(t *testing.T, suite string, tables ...interface{}) *gorm.DB {
+func NewDB(t *testing.T, suite string, tables ...any) *gorm.DB {
dbType := os.Getenv("GOGS_DATABASE_TYPE")
var dbName string