Skip to content

Commit d5f43f0

Browse files
committed
tweak
1 parent fd19758 commit d5f43f0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/aws-cdk/test/cli/cdk-toolkit.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -416,10 +416,10 @@ describe('deploy', () => {
416416
});
417417

418418
test.each([
419-
[true, 1],
420-
[undefined, 1],
421-
[false, 1],
422-
])('defaults to 1 when assetParallelism=%s and assetBuildConcurrency is not specified', async (assetParallelism, expected) => {
419+
[true],
420+
[undefined],
421+
[false],
422+
])('defaults to 1 when assetParallelism=%s and assetBuildConcurrency is not specified', async (assetParallelism) => {
423423
cloudExecutable = await MockCloudExecutable.create({
424424
stacks: [MockStack.MOCK_STACK_WITH_ASSET],
425425
});
@@ -447,7 +447,7 @@ describe('deploy', () => {
447447

448448
expect(mockWorkGraph.doParallel).toHaveBeenCalledWith(
449449
expect.objectContaining({
450-
'asset-build': expected,
450+
'asset-build': 1,
451451
}),
452452
expect.anything(),
453453
);

0 commit comments

Comments
 (0)