| OLD | NEW |
| 1 package db | 1 package db |
| 2 | 2 |
| 3 import ( | 3 import ( |
| 4 "testing" | 4 "testing" |
| 5 | 5 |
| 6 "skia.googlesource.com/buildbot.git/go/database/testutil" | 6 "skia.googlesource.com/buildbot.git/go/database/testutil" |
| 7 ) | 7 ) |
| 8 | 8 |
| 9 func TestSQLiteVersioning(t *testing.T) { | |
| 10 testutil.SQLiteVersioningTests(t, migrationSteps) | |
| 11 } | |
| 12 | |
| 13 func TestMySQLVersioning(t *testing.T) { | 9 func TestMySQLVersioning(t *testing.T) { |
| 14 testutil.MySQLVersioningTests(t, "skia", migrationSteps) | 10 testutil.MySQLVersioningTests(t, "skia", migrationSteps) |
| 15 } | 11 } |
| OLD | NEW |