Fix minor mistake on tests

pull/34/head
Vinícius Garcia 2022-12-21 22:15:30 -03:00
parent ddd9a4dec5
commit f183327eec
1 changed files with 1 additions and 1 deletions

View File

@ -3440,7 +3440,7 @@ func createTables(dialect sqldialect.Provider, connStr string) error {
driver := dialect.DriverName()
if connStr == "" {
return fmt.Errorf("unsupported dialect: '%s'", dialect)
return fmt.Errorf("unsupported dialect: '%s'", driver)
}
db, err := sql.Open(driver, connStr)