From 91530db629b90e1d023a4f4fe80c155172783f8a Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 7 Oct 2023 09:20:28 -0500 Subject: [PATCH] Fix typo in string.Cut refactor --- pgconn/pgconn_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)