From 394b7963f02dfcd17a888201171adb51ce508388 Mon Sep 17 00:00:00 2001 From: Joe Hillenbrand Date: Fri, 31 May 2019 01:03:36 -0700 Subject: [PATCH] chore(stepfunctions-tasks): typos in test names (#2695) --- .../@aws-cdk/aws-stepfunctions-tasks/test/ecs-tasks.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/@aws-cdk/aws-stepfunctions-tasks/test/ecs-tasks.test.ts b/packages/@aws-cdk/aws-stepfunctions-tasks/test/ecs-tasks.test.ts index 829d1534101a4..49e37be3036ef 100644 --- a/packages/@aws-cdk/aws-stepfunctions-tasks/test/ecs-tasks.test.ts +++ b/packages/@aws-cdk/aws-stepfunctions-tasks/test/ecs-tasks.test.ts @@ -20,7 +20,7 @@ beforeEach(() => { }); }); -test('Canot create a Farkate task with a fargate-incompatible task definition', () => { +test('Cannot create a Fargate task with a fargate-incompatible task definition', () => { const taskDefinition = new ecs.TaskDefinition(stack, 'TD', { memoryMiB: '512', cpu: '256', @@ -35,7 +35,7 @@ test('Canot create a Farkate task with a fargate-incompatible task definition', .toThrowError(/not configured for compatibility with Fargate/); }); -test('Canot create a Farkate task without a default container', () => { +test('Cannot create a Fargate task without a default container', () => { const taskDefinition = new ecs.TaskDefinition(stack, 'TD', { memoryMiB: '512', cpu: '256',