mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
update golangci-lint action to v3, golangci-lint to v1.48.0 (#3499)
* run gofmt -s -w * stop using the deprecated io/ioutil package * update golangci-lint action to v3, golangci-lint to v1.48.0
This commit is contained in:
parent
7ebe1430ef
commit
498475fa60
20 changed files with 39 additions and 37 deletions
|
@ -1,7 +1,7 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"io"
|
||||
"log"
|
||||
"sync"
|
||||
"testing"
|
||||
|
@ -26,7 +26,7 @@ var _ = BeforeEach(func() {
|
|||
})
|
||||
|
||||
var _ = BeforeSuite(func() {
|
||||
log.SetOutput(ioutil.Discard)
|
||||
log.SetOutput(io.Discard)
|
||||
})
|
||||
|
||||
var _ = AfterEach(func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue