From 633904d9bf82901237fba7ab552c02261b627d21 Mon Sep 17 00:00:00 2001 From: mazyu36 Date: Sun, 8 Sep 2024 15:55:42 +0900 Subject: [PATCH] chore(cognito): fix test case name for User Pool Domain (#31365) While working on #31351, I discovered. The test case name for `User Pool Domain` was incorrectly set as `User Pool Client`. It's likely that when the code was reused from `user-pool-client.test.ts`, the test case name wasn't updated. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk-lib/aws-cognito/test/user-pool-domain.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/aws-cognito/test/user-pool-domain.test.ts b/packages/aws-cdk-lib/aws-cognito/test/user-pool-domain.test.ts index 109c357576c34..0f3439a3f68d2 100644 --- a/packages/aws-cdk-lib/aws-cognito/test/user-pool-domain.test.ts +++ b/packages/aws-cdk-lib/aws-cognito/test/user-pool-domain.test.ts @@ -3,7 +3,7 @@ import { Certificate } from '../../aws-certificatemanager'; import { CfnParameter, Stack } from '../../core'; import { UserPool, UserPoolDomain } from '../lib'; -describe('User Pool Client', () => { +describe('User Pool Domain', () => { test('custom domain name', () => { // GIVEN const stack = new Stack();