Skip to content

Commit a7544b9

Browse files
committed
fix typo
1 parent e15eb73 commit a7544b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/aws-cdk-lib/aws-stepfunctions/test/state-machine.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)