Rename histogram tests (from sparse to native)

Signed-off-by: beorn7 <beorn@grafana.com>
This commit is contained in:
beorn7 2022-11-14 14:53:16 +01:00
parent 449b464350
commit efef9034c5
1 changed files with 3 additions and 3 deletions

View File

@ -470,7 +470,7 @@ func TestHistogramExemplar(t *testing.T) {
} }
} }
func TestSparseHistogram(t *testing.T) { func TestNativeHistogram(t *testing.T) {
scenarios := []struct { scenarios := []struct {
name string name string
observations []float64 // With simulated interval of 1m. observations []float64 // With simulated interval of 1m.
@ -686,7 +686,7 @@ func TestSparseHistogram(t *testing.T) {
} }
} }
func TestSparseHistogramConcurrency(t *testing.T) { func TestNativeHistogramConcurrency(t *testing.T) {
if testing.Short() { if testing.Short() {
t.Skip("Skipping test in short mode.") t.Skip("Skipping test in short mode.")
} }
@ -703,7 +703,7 @@ func TestSparseHistogramConcurrency(t *testing.T) {
end.Add(concLevel) end.Add(concLevel)
his := NewHistogram(HistogramOpts{ his := NewHistogram(HistogramOpts{
Name: "test_sparse_histogram", Name: "test_native_histogram",
Help: "This help is sparse.", Help: "This help is sparse.",
NativeHistogramBucketFactor: 1.05, NativeHistogramBucketFactor: 1.05,
NativeHistogramZeroThreshold: 0.0000001, NativeHistogramZeroThreshold: 0.0000001,