Skip to content

Commit

Permalink
Adding correct number of indicies
Browse files Browse the repository at this point in the history
Signed-off-by: Yashvi Jain <yashvi.jain@progress.com>
  • Loading branch information
Yashvi Jain committed Dec 5, 2024
1 parent 69b1db2 commit d1f59e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestPurgeTimeSeriesIndicesByAge(t *testing.T) {
fmt.Sprintf("When starting with %v indices and removing older than %v days, %v remain",
test.startingCount, test.olderThanDays, test.expectedRemainingCount),
func(t *testing.T) {
doPurgeTest(t, TimeSeriesTestIndex, test.startingCount, test.olderThanDays, test.expectedRemainingCount+2)
doPurgeTest(t, TimeSeriesTestIndex, test.startingCount, test.olderThanDays, test.expectedRemainingCount+4)
},
)
}
Expand Down

0 comments on commit d1f59e7

Please sign in to comment.