Skip to content

Commit 19e7654

Browse files
committed
changes needed to use the updated mssql driver
1 parent c22c1a8 commit 19e7654

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqltest/fixture.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"context"
55
"database/sql"
66
"fmt"
7+
"github.com/gofrs/uuid"
78
mssql "github.com/microsoft/go-mssqldb"
89
"github.com/microsoft/go-mssqldb/msdsn"
9-
"github.com/gofrs/uuid"
1010
"io/ioutil"
1111
"os"
1212
"strings"
@@ -68,7 +68,7 @@ func NewFixture() *Fixture {
6868
panic(err)
6969
}
7070

71-
pdsn, _, err := msdsn.Parse(dsn)
71+
pdsn, err := msdsn.Parse(dsn)
7272
if err != nil {
7373
panic(err)
7474
}

0 commit comments

Comments
 (0)