Skip to content

Commit 8c96f6e

Browse files
committed
use pq
1 parent 1b139e4 commit 8c96f6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coderd/database/dbtestutil/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func (c *Connector) Connect(_ context.Context) (driver.Conn, error) {
3030
return conn, nil
3131
}
3232

33-
conn, err := c.driver.Open(c.name)
33+
conn, err := pq.Driver{}.Open(c.name)
3434
if err != nil {
3535
return nil, xerrors.Errorf("failed to open connection: %w", err)
3636
}

0 commit comments

Comments
 (0)