Remove error check when dropping test tables

It was prevent the tests from running
pull/2/head
Vinícius Garcia 2021-01-21 16:03:00 -03:00
parent 77631f480c
commit f9a6372b8a
1 changed files with 1 additions and 4 deletions

View File

@ -1001,10 +1001,7 @@ func createTable(driver string) error {
}
defer db.Close()
_, err = db.Exec(`DROP TABLE users`)
if err != nil {
return fmt.Errorf("failed to drop old users table: %s", err.Error())
}
db.Exec(`DROP TABLE users`)
switch driver {
case "sqlite3":