From 4ab2f5421083225550ef44000699a0d6e899983c Mon Sep 17 00:00:00 2001 From: Anmol Sethi <hi@nhooyr.io> Date: Tue, 10 Oct 2023 08:34:49 -0700 Subject: [PATCH] conn_test: Remove ioutil --- conn_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn_test.go b/conn_test.go index f474ae0..639666b 100644 --- a/conn_test.go +++ b/conn_test.go @@ -223,7 +223,7 @@ func TestConn(t *testing.T) { return n2.Close() }) - b, err := ioutil.ReadAll(n1) + b, err := io.ReadAll(n1) assert.Success(t, err) _, err = n1.Read(nil) -- GitLab