From 4f176a482f1735e0d58f31928aea075a8cc53d83 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Wed, 27 May 2026 14:54:59 +0000 Subject: [PATCH] changing ses config to test values --- src/app/email_templates/buildMailHeaders.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/email_templates/buildMailHeaders.test.ts b/src/app/email_templates/buildMailHeaders.test.ts index bc02dcc..e93cbdd 100644 --- a/src/app/email_templates/buildMailHeaders.test.ts +++ b/src/app/email_templates/buildMailHeaders.test.ts @@ -5,10 +5,10 @@ describe("buildMailHeaders", () => { it("includes X-SES-CONFIGURATION-SET when a configuration set is provided", () => { const headers = buildMailHeaders({ fromAddress: "noreply@domna.homes", - sesConfigurationSet: "dev-ses-config", + sesConfigurationSet: "test-config-set", }); - expect(headers["X-SES-CONFIGURATION-SET"]).toBe("dev-ses-config"); + expect(headers["X-SES-CONFIGURATION-SET"]).toBe("test-config-set"); }); it("omits X-SES-CONFIGURATION-SET entirely when no configuration set is provided", () => {