Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
sgress454 committed Jan 16, 2025
1 parent e83d73a commit 33b3e69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/webhooks/failing_policies_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -466,10 +466,10 @@ func TestSendBatchedPOSTs(t *testing.T) {
expRequestCount: 1,
},
{
name: "100k-hosts-no-batching",
name: "100k-hosts-all-in-one-batch",
hostCount: 100000,
batchSize: 0,
expRequestCount: 100000,
batchSize: 100000,
expRequestCount: 1,
},
} {
t.Run(tc.name, func(t *testing.T) {
Expand Down

0 comments on commit 33b3e69

Please sign in to comment.