diff --git a/pgconn/pgconn_test.go b/pgconn/pgconn_test.go index 0eb3841a..6bf10e76 100644 --- a/pgconn/pgconn_test.go +++ b/pgconn/pgconn_test.go @@ -2410,7 +2410,7 @@ func TestFatalErrorReceivedAfterCommandComplete(t *testing.T) { } }() - host, port, _ := strings.cut(ln.Addr().String(), ":") + host, port, _ := strings.Cut(ln.Addr().String(), ":") connStr := fmt.Sprintf("sslmode=disable host=%s port=%s", host, port) ctx, cancel = context.WithTimeout(ctx, 5*time.Second)