pgx/pgconn/helper_test.go
2018-12-30 21:10:06 -06:00

14 lines
200 B
Go

package pgconn_test
import (
"testing"
"github.com/jackc/pgx/pgconn"
"github.com/stretchr/testify/require"
)
func closeConn(t testing.TB, conn *pgconn.PgConn) {
require.Nil(t, conn.Close())
}