From 3ab1510a8f6d23c7b085867bb4f9bcb7f586261b Mon Sep 17 00:00:00 2001 From: joe-king-sh Date: Thu, 30 Jun 2022 12:38:00 +0000 Subject: [PATCH] feat(core): fix a lint issue. --- packages/@aws-cdk/core/test/nested-stack.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/core/test/nested-stack.test.ts b/packages/@aws-cdk/core/test/nested-stack.test.ts index 0bbf9f7f9bd58..697253fe5f7fd 100644 --- a/packages/@aws-cdk/core/test/nested-stack.test.ts +++ b/packages/@aws-cdk/core/test/nested-stack.test.ts @@ -23,7 +23,7 @@ describe('nested-stack', () => { }); }); test('a nested-stack has a description in templateOptions.', () => { - const description = 'This is a description.' + const description = 'This is a description.'; const stack = new Stack(); var nestedStack = new NestedStack(stack, 'MyNestedStack', { description,