Skip to content

Commit

Permalink
chore(stepfunctions-tasks): typos in test names (#2695)
Browse files Browse the repository at this point in the history
  • Loading branch information
joehillen authored and rix0rrr committed May 31, 2019
1 parent b864041 commit 394b796
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit 394b796

Please sign in to comment.