aboutsummaryrefslogtreecommitdiff
path: root/lib/ints/ints_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ints/ints_test.go')
-rw-r--r--lib/ints/ints_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/ints/ints_test.go b/lib/ints/ints_test.go
index aba09913..65ae6fa7 100644
--- a/lib/ints/ints_test.go
+++ b/lib/ints/ints_test.go
@@ -12,7 +12,6 @@ import (
"github.com/shuLhan/share/lib/test"
)
-//nolint:gochecknoglobals
var (
d = [][]int{
{},
@@ -259,7 +258,6 @@ func TestSortByIndex(t *testing.T) {
}
}
-//nolint:gochecknoglobals,dupl
var intsInSorts = [][]int{
{9, 8, 7, 6, 5, 4, 3},
{9, 8, 7, 6, 5, 4, 3, 2, 1, 0},
@@ -280,7 +278,6 @@ var intsInSorts = [][]int{
62},
}
-//nolint:gochecknoglobals,dupl
var intsExpSorts = [][]int{
{3, 4, 5, 6, 7, 8, 9},
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
@@ -301,7 +298,6 @@ var intsExpSorts = [][]int{
79},
}
-//nolint:gochecknoglobals,dupl
var intsExpSortsDesc = [][]int{
{9, 8, 7, 6, 5, 4, 3},
{9, 8, 7, 6, 5, 4, 3, 2, 1, 0},