(t *testing.T, a, b []string)
| 81 | } |
| 82 | |
| 83 | func stringsSlicesEqual(t *testing.T, a, b []string) { |
| 84 | sort.Strings(a) |
| 85 | sort.Strings(b) |
| 86 | require.Equal(t, a, b) |
| 87 | } |
| 88 | |
| 89 | func BenchmarkDistinctValueCollect(b *testing.B) { |
| 90 | // simulate 100 ingesters, each returning 10_000 tag values |
no test coverage detected