mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Update golangci-lint configuration
This commit is contained in:
parent
e33b1d67d5
commit
ec1df651e8
4 changed files with 19 additions and 1 deletions
|
@ -36,7 +36,7 @@ func TCPPipe(t *testing.T) (net.Conn, net.Conn) {
|
|||
clientConn, clientErr = net.Dial("tcp", listener.Addr().String())
|
||||
return clientErr
|
||||
})
|
||||
err = group.Run()
|
||||
err = group.Run(context.Background())
|
||||
require.NoError(t, err)
|
||||
listener.Close()
|
||||
t.Cleanup(func() {
|
||||
|
|
|
@ -6,6 +6,7 @@ import (
|
|||
)
|
||||
|
||||
func TestRevertRanges(t *testing.T) {
|
||||
t.Parallel()
|
||||
for _, testRange := range []struct {
|
||||
start, end int
|
||||
ranges []Range[int]
|
||||
|
@ -77,6 +78,7 @@ func TestRevertRanges(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestMergeRanges(t *testing.T) {
|
||||
t.Parallel()
|
||||
for _, testRange := range []struct {
|
||||
ranges []Range[int]
|
||||
expected []Range[int]
|
||||
|
@ -144,6 +146,7 @@ func TestMergeRanges(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestExcludeRanges(t *testing.T) {
|
||||
t.Parallel()
|
||||
for _, testRange := range []struct {
|
||||
ranges []Range[int]
|
||||
exclude []Range[int]
|
||||
|
|
|
@ -9,6 +9,7 @@ import (
|
|||
)
|
||||
|
||||
func TestSlicesValue(t *testing.T) {
|
||||
t.Parallel()
|
||||
int64Arr := make([]int64, 64)
|
||||
for i := range int64Arr {
|
||||
int64Arr[i] = rand.Int63()
|
||||
|
@ -18,6 +19,7 @@ func TestSlicesValue(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestSetSliceValue(t *testing.T) {
|
||||
t.Parallel()
|
||||
int64Arr := make([]int64, 64)
|
||||
value := reflect.Indirect(reflect.ValueOf(&int64Arr))
|
||||
newInt64Arr := make([]int64, 64)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue