Skip to content

Commit 51ec421

Browse files
committed
Remove debugging print from mysql driver test
1 parent 1cf095c commit 51ec421

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

database/mysql/mysql_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ var versions = []mt.Version{
2121
}
2222

2323
func isReady(i mt.Instance) bool {
24-
connStr := fmt.Sprintf("root:root@tcp(%v:%v)/public", i.Host(), i.Port())
25-
fmt.Println(connStr)
26-
db, err := sql.Open("mysql", connStr)
24+
db, err := sql.Open("mysql", fmt.Sprintf("root:root@tcp(%v:%v)/public", i.Host(), i.Port()))
2725
if err != nil {
2826
return false
2927
}

0 commit comments

Comments
 (0)