pgx/pgconn/helper_test.go

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())
}