fix mysql tests

This commit is contained in:
mattes 2014-10-17 11:39:01 -07:00
parent 7b1a07fa97
commit 5b6715333f
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import (
// TestMigrate runs some additional tests on Migrate().
// Basic testing is already done in migrate/migrate_test.go
func TestMigrate(t *testing.T) {
driverUrl := "root@tcp(127.0.0.1:3306)/migratetest"
driverUrl := "mysql://root@tcp(127.0.0.1:3306)/migratetest"
// prepare clean database
connection, err := sql.Open("mysql", driverUrl)