Skip to content

Commit

Permalink
Reducing lower bound of random # of batches
Browse files Browse the repository at this point in the history
  • Loading branch information
ycombinator committed Apr 21, 2020
1 parent 15a1383 commit 6e10331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbeat/publisher/pipeline/output_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func TestReplaceClientWorker(t *testing.T) {
seedPRNG(t)

err := quick.Check(func(i uint) bool {
numBatches := 10000 + (i % 100) // between 1000 and 1099
numBatches := 1000 + (i % 100) // between 1000 and 1099

wqu := makeWorkQueue()
retryer := newRetryer(logp.NewLogger("test"), nilObserver, wqu, nil)
Expand Down

0 comments on commit 6e10331

Please sign in to comment.