Skip to content

Commit 012a900

Browse files
fix: test
1 parent b12d2bd commit 012a900

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/source/mock/google/strategies/send-message-strategy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ class PwdEncryptedMessageWithFesIdTokenTestStrategy implements ITestMsgStrategy
132132
const mimeMsg = parseResult.mimeMsg;
133133
const expectedSenderEmail = `[email protected]:${port}`;
134134
expect(mimeMsg.from!.text).to.equal(`"First Last" <${expectedSenderEmail}>`);
135-
if (mimeMsg.text?.includes(`http://fes.standardsubdomainfes.localhost:${port}/message/[email protected]`)) {
135+
if (mimeMsg.text?.includes(`http://fes.standardsubdomainfes.localhost:${port}/messages/[email protected]`)) {
136136
expect((mimeMsg.to as AddressObject).text).to.equal('"Mr To" <[email protected]>');
137137
expect(mimeMsg.cc).to.be.an.undefined;
138138
expect(mimeMsg.bcc).to.be.an.undefined;
139-
} else if (mimeMsg.text?.includes(`http://fes.standardsubdomainfes.localhost:${port}/message/[email protected]`)) {
139+
} else if (mimeMsg.text?.includes(`http://fes.standardsubdomainfes.localhost:${port}/messages/[email protected]`)) {
140140
expect((mimeMsg.to as AddressObject).text).to.equal('"Mr Bcc" <[email protected]>');
141141
expect(mimeMsg.cc).to.be.an.undefined;
142142
expect(mimeMsg.bcc).to.be.an.undefined;

0 commit comments

Comments
 (0)