Skip to content

Commit 2d9bbc7

Browse files
Apply suggestion from @greptile-apps[bot]
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
1 parent 8ea7af7 commit 2d9bbc7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sim/executor/orchestrators/parallel.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ describe('ParallelOrchestrator', () => {
260260
it.each([
261261
['oversized numeric batch size', 999, DEFAULTS.MAX_PARALLEL_BRANCHES],
262262
['negative batch size', -1, 1],
263-
['undefined batch size', undefined, 20],
264-
['nonnumeric batch size', 'not-a-number', 20],
263+
['undefined batch size', undefined, DEFAULT_PARALLEL_BATCH_SIZE],
264+
['nonnumeric batch size', 'not-a-number', DEFAULT_PARALLEL_BATCH_SIZE],
265265
])('normalizes %s', async (_name, batchSize, expectedBatchSize) => {
266266
const dag = createDag()
267267
const parallelConfig = dag.parallelConfigs.get('parallel-1')!

0 commit comments

Comments
 (0)