Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mapno committed Oct 1, 2024
1 parent b0f0d09 commit b38c24c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/generator/registry/native_histogram_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ func Test_Histograms(t *testing.T) {
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
t.Run("classic", func(t *testing.T) {
onAdd := func(count uint32) bool { return true }
onAdd := func(uint32) bool { return true }
h := newHistogram("test_histogram", tc.buckets, onAdd, nil, "trace_id")
testHistogram(t, h, tc.collections)
})
Expand All @@ -462,7 +462,7 @@ func Test_Histograms(t *testing.T) {
t.SkipNow()
}

onAdd := func(count uint32) bool { return true }
onAdd := func(uint32) bool { return true }
h := newNativeHistogram("test_histogram", tc.buckets, onAdd, nil, "trace_id", HistogramModeBoth)
testHistogram(t, h, tc.collections)
})
Expand Down

0 comments on commit b38c24c

Please sign in to comment.