Skip to content

Commit

Permalink
Add missing case to prometheus helper test (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuskoman authored Nov 7, 2024
1 parent 2771cc6 commit 45cbeed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/prometheus_helper/prometheus_helper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ func TestSimpleMetricsHelper(t *testing.T) {
}
helper.NewFloatMetric(metricDesc, prometheus.GaugeValue, metricValue)
helper.NewIntMetric(metricDesc, prometheus.GaugeValue, int(metricValue))
helper.NewInt64Metric(metricDesc, prometheus.GaugeValue, int64(metricValue))

close(ch)

Expand Down

0 comments on commit 45cbeed

Please sign in to comment.