Chore: use any rather than interface{} (#74066)
This commit is contained in:
@@ -559,9 +559,9 @@ func (ss *SQLStore) RecursiveQueriesAreSupported() (bool, error) {
|
||||
// ITestDB is an interface of arguments for testing db
|
||||
type ITestDB interface {
|
||||
Helper()
|
||||
Fatalf(format string, args ...interface{})
|
||||
Logf(format string, args ...interface{})
|
||||
Log(args ...interface{})
|
||||
Fatalf(format string, args ...any)
|
||||
Logf(format string, args ...any)
|
||||
Log(args ...any)
|
||||
}
|
||||
|
||||
var testSQLStore *SQLStore
|
||||
|
||||
Reference in New Issue
Block a user