@@ -443,7 +443,8 @@ describe('test/unit/lib/plugins/aws/customResources/index.test.js', () => {
443443 } ,
444444 } ) ;
445445
446- const properties = cfTemplate . Resources . CustomDashresourceDashapigwDashcwDashroleLambdaFunction . Properties ;
446+ const properties =
447+ cfTemplate . Resources . CustomDashresourceDashapigwDashcwDashroleLambdaFunction . Properties ;
447448 expect ( properties . Runtime ) . to . equal ( 'nodejs22.x' ) ;
448449 } ) ;
449450
@@ -459,7 +460,8 @@ describe('test/unit/lib/plugins/aws/customResources/index.test.js', () => {
459460 } ,
460461 } ) ;
461462
462- const properties = cfTemplate . Resources . CustomDashresourceDashexistingDashcupLambdaFunction . Properties ;
463+ const properties =
464+ cfTemplate . Resources . CustomDashresourceDashexistingDashcupLambdaFunction . Properties ;
463465 expect ( properties . Runtime ) . to . equal ( 'nodejs22.x' ) ;
464466 } ) ;
465467
@@ -479,7 +481,8 @@ describe('test/unit/lib/plugins/aws/customResources/index.test.js', () => {
479481 } ,
480482 } ) ;
481483
482- const properties = cfTemplate . Resources . CustomDashresourceDasheventDashbridgeLambdaFunction . Properties ;
484+ const properties =
485+ cfTemplate . Resources . CustomDashresourceDasheventDashbridgeLambdaFunction . Properties ;
483486 expect ( properties . Runtime ) . to . equal ( 'nodejs22.x' ) ;
484487 } ) ;
485488
@@ -495,11 +498,11 @@ describe('test/unit/lib/plugins/aws/customResources/index.test.js', () => {
495498 } ,
496499 } ) ;
497500
498- const properties = cfTemplate . Resources . CustomDashresourceDashexistingDashs3LambdaFunction . Properties ;
501+ const properties =
502+ cfTemplate . Resources . CustomDashresourceDashexistingDashs3LambdaFunction . Properties ;
499503 expect ( properties . Runtime ) . to . equal ( 'nodejs22.x' ) ;
500504 } ) ;
501505
502-
503506 it ( 'correctly takes stage from config into account when constructing apiGatewayCloudWatchRole resource' , async ( ) => {
504507 const { cfTemplate } = await runServerless ( {
505508 fixture : 'api-gateway' ,
0 commit comments