mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 13:44:05 -08:00
tsdb/index: Fix TestReader_PostingsForLabelMatchingHonorsContextCancel
Fix number of series in TestReader_PostingsForLabelMatchingHonorsContextCancel (off by one). Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
parent
efbd6e41c5
commit
b8b9015e38
|
@ -615,7 +615,7 @@ func TestChunksTimeOrdering(t *testing.T) {
|
||||||
func TestReader_PostingsForLabelMatchingHonorsContextCancel(t *testing.T) {
|
func TestReader_PostingsForLabelMatchingHonorsContextCancel(t *testing.T) {
|
||||||
const seriesCount = 1000
|
const seriesCount = 1000
|
||||||
var input indexWriterSeriesSlice
|
var input indexWriterSeriesSlice
|
||||||
for i := 1; i < seriesCount; i++ {
|
for i := 1; i <= seriesCount; i++ {
|
||||||
input = append(input, &indexWriterSeries{
|
input = append(input, &indexWriterSeries{
|
||||||
labels: labels.FromStrings("__name__", fmt.Sprintf("%4d", i)),
|
labels: labels.FromStrings("__name__", fmt.Sprintf("%4d", i)),
|
||||||
chunks: []chunks.Meta{
|
chunks: []chunks.Meta{
|
||||||
|
|
Loading…
Reference in a new issue