Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/listenmux/mux_test.go')
-rw-r--r--internal/listenmux/mux_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/listenmux/mux_test.go b/internal/listenmux/mux_test.go
index 905329fbe..4ab8c488a 100644
--- a/internal/listenmux/mux_test.go
+++ b/internal/listenmux/mux_test.go
@@ -6,7 +6,6 @@ import (
"errors"
"fmt"
"io"
- "io/ioutil"
"math/rand"
"net"
"syscall"
@@ -253,7 +252,7 @@ func TestMux_concurrency(t *testing.T) {
return err
}
- out, err := ioutil.ReadAll(c)
+ out, err := io.ReadAll(c)
if err != nil {
return err
}