Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pahud committed Nov 14, 2022
1 parent 07c02a7 commit 3f7ddee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/@aws-cdk/aws-eks/test/nodegroup.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -864,8 +864,7 @@ describe('node group', () => {
});

// WHEN
const ngName = 'mock-name';
const ng = new eks.Nodegroup(stack, 'Nodegroup', { cluster, nodegroupName: ngName });
const ng = new eks.Nodegroup(stack, 'Nodegroup', { cluster, nodegroupName: 'mock-name' });
new cdk.CfnOutput(stack, 'NodegroupName', { value: ng.nodegroupName });
// THEN
Template.fromStack(stack).templateMatches({
Expand Down

0 comments on commit 3f7ddee

Please sign in to comment.