Skip to content

Commit da6eb9d

Browse files
committed
💄 lint
1 parent cd0bc21 commit da6eb9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

map_benchmark_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func BenchmarkUniqKeys(b *testing.B) {
9393
continue
9494
}
9595
seen[k] = struct{}{}
96-
result = append(result, k)
96+
result = append(result, k) //nolint:staticcheck
9797
}
9898
}
9999
}
@@ -117,7 +117,7 @@ func BenchmarkUniqKeys(b *testing.B) {
117117
result := make([]int64, 0, len(seen))
118118

119119
for k := range seen {
120-
result = append(result, k)
120+
result = append(result, k) //nolint:staticcheck
121121
}
122122
}
123123
})

0 commit comments

Comments
 (0)