Skip to content

Commit

Permalink
chore: changed variable name, merged main into branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Vieltojarvi committed Aug 19, 2024
1 parent f77a5f2 commit d82c4c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/auth-construct/src/construct.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ void describe('Auth construct', () => {
void it('configures Cognito to send emails with SES when senders field is populated', () => {
const app = new App();
const stack = new Stack(app);
const expectedEmail = 'Example.com <[email protected]>';
const expectedNameAndEmail = 'Example.com <[email protected]>';
const expectedReply = '[email protected]';
const sesEmailSettings = {
fromEmail: '[email protected]',
Expand All @@ -567,7 +567,7 @@ void describe('Auth construct', () => {
const template = Template.fromStack(stack);
template.allResourcesProperties('AWS::Cognito::UserPool', {
EmailConfiguration: {
From: expectedEmail,
From: expectedNameAndEmail,
ReplyToEmailAddress: expectedReply,
},
});
Expand Down

0 comments on commit d82c4c4

Please sign in to comment.