Skip to content

Commit

Permalink
chore(cognito): fix test case name for User Pool Domain (aws#31365)
Browse files Browse the repository at this point in the history
While working on aws#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*
  • Loading branch information
mazyu36 authored and xazhao committed Sep 12, 2024
1 parent b559295 commit ae6c664
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit ae6c664

Please sign in to comment.