mirror of
https://github.com/jackc/pgx.git
synced 2025-05-31 11:42:24 +00:00
14 lines
200 B
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())
|
|
}
|