Skip to content

Commit

Permalink
fix flaky test (#15153)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkouv authored Nov 7, 2024
1 parent 3b6aace commit 6d50e63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func TestDefaultEvmBatchCaller_batchCallLimit(t *testing.T) {
{numCalls: 10, batchSize: 100, parallelRpcCallsLimit: 10},
{numCalls: 1, batchSize: 100, parallelRpcCallsLimit: 10},
{numCalls: 1000, batchSize: 10, parallelRpcCallsLimit: 2},
{numCalls: rand.Uint() % 1000, batchSize: rand.Uint() % 500, parallelRpcCallsLimit: rand.Uint() % 500},
{numCalls: 1 + rand.Uint()%1000, batchSize: 1 + rand.Uint()%500, parallelRpcCallsLimit: 1 + rand.Uint()%500},
}

for _, tc := range testCases {
Expand Down

0 comments on commit 6d50e63

Please sign in to comment.