From 0713874b4cb573994e097aa8cc85ec7bae1e0d76 Mon Sep 17 00:00:00 2001 From: yamoyamoto Date: Tue, 19 Dec 2023 09:06:38 +0000 Subject: [PATCH] fix: added spaces because it does not conform to the code style --- packages/aws-cdk-lib/aws-iam/test/role.from-role-arn.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/aws-iam/test/role.from-role-arn.test.ts b/packages/aws-cdk-lib/aws-iam/test/role.from-role-arn.test.ts index 76ed8e64bf320..d01e160007ccf 100644 --- a/packages/aws-cdk-lib/aws-iam/test/role.from-role-arn.test.ts +++ b/packages/aws-cdk-lib/aws-iam/test/role.from-role-arn.test.ts @@ -78,7 +78,7 @@ describe('IAM Role.fromRoleArn', () => { expect(stack2PolicyNameCapture.asString()).toMatch(/PolicyRoleStack2ImportedRole.*/); }); - test('Policy name is truncated to a maximum length of 128 characters when the original name exceeds this limit', () =>{ + test('Policy name is truncated to a maximum length of 128 characters when the original name exceeds this limit', () => { const appWithFeatureFlag = new App({ context: { [IAM_IMPORTED_ROLE_STACK_SAFE_DEFAULT_POLICY_NAME]: true } }); const roleStack1 = new Stack(appWithFeatureFlag, 'RoleStack1');