File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/aws-cdk/test/cli Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments