2
0

Do not share database connections between tests

This commit is contained in:
Jack Christensen
2014-06-20 15:18:55 -05:00
parent 7a8e80ac0d
commit 73b5c73c1c
6 changed files with 121 additions and 185 deletions
+2 -1
View File
@@ -6,7 +6,8 @@ import (
)
func TestDataRowReaderReadValue(t *testing.T) {
conn := getSharedConnection(t)
conn := mustConnect(t, *defaultConnConfig)
defer closeConn(t, conn)
test := func(sql string, expected interface{}) {
var v interface{}