Skip to content

Commit cd562c5

Browse files
committed
fix tests & linter
Signed-off-by: Eugene <[email protected]>
1 parent 439b397 commit cd562c5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

prometheus/promsafe/labels_provider_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,10 @@ func Test_extractLabelNames(t *testing.T) {
196196
Field1: "value1",
197197
Field2: 123,
198198
Field3: true,
199+
Field4: CustomConst1,
200+
Field5: CustomConstInt100,
199201
},
200-
expected: []string{"field1", "field2", "field3"},
202+
expected: []string{"field1", "field2", "field3", "field4", "field5"},
201203
},
202204
{
203205
name: "Struct with custom tags and exclusions",

prometheus/promsafe/promauto_adapter/promauto_adapter_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func ExampleNewCounterVec_promauto_adapted() {
6969
Source string
7070
}
7171
// if declare Mylabels as global type you can add .ToPrometheusLabels() method
72-
// that will use fast labels convertion instead of automatic reflect-based
72+
// that will use fast labels conversion instead of automatic reflect-based
7373

7474
c := promauto.With[MyLabels](myReg).NewCounterVec(counterOpts)
7575

0 commit comments

Comments
 (0)