Merge pull request #14199 from aknuds1/arve/fix-test

tsdb/index: Fix number of series in TestReader_PostingsForLabelMatchingHonorsContextCancel
This commit is contained in:
Arve Knudsen 2024-06-03 19:33:18 +02:00 committed by GitHub
commit 31a74dcf5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -615,7 +615,7 @@ func TestChunksTimeOrdering(t *testing.T) {
func TestReader_PostingsForLabelMatchingHonorsContextCancel(t *testing.T) {
const seriesCount = 1000
var input indexWriterSeriesSlice
for i := 1; i < seriesCount; i++ {
for i := 1; i <= seriesCount; i++ {
input = append(input, &indexWriterSeries{
labels: labels.FromStrings("__name__", fmt.Sprintf("%4d", i)),
chunks: []chunks.Meta{