File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/aws-cdk-lib/aws-stepfunctions/test Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ describe('State Machine', () => {
354354 } ) ;
355355 } ) ,
356356
357- test ( 'Instantiate State Machine With Many Labeled And One Unlabled Distributed Map State' , ( ) => {
357+ test ( 'Instantiate State Machine With Many Labeled And One Unlabeled Distributed Map State' , ( ) => {
358358 // GIVEN
359359 const stack = new cdk . Stack ( ) ;
360360
@@ -369,7 +369,7 @@ describe('State Machine', () => {
369369 label : 'myLabel3' ,
370370 } ) . itemProcessor ( new sfn . Pass ( stack , 'Pass 3' ) ) ;
371371
372- const unlabeledMap4 = new sfn . DistributedMap ( stack , 'Unlabled Map State' ) ;
372+ const unlabeledMap4 = new sfn . DistributedMap ( stack , 'Unlabeled Map State' ) ;
373373 unlabeledMap4 . itemProcessor ( new sfn . Pass ( stack , 'Pass 4' ) ) ;
374374
375375 const chain = map1 . next ( map2 ) . next ( map3 ) . next ( unlabeledMap4 ) ;
You can’t perform that action at this time.
0 commit comments