From d851045a87bc046d0157f995769e50e7067dbf0c Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Thu, 26 Sep 2024 15:11:28 -0500 Subject: [PATCH] chore: correct behavior in test --- test/unit/messages.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unit/messages.test.ts b/test/unit/messages.test.ts index a72e1a10b..63ab1f11b 100644 --- a/test/unit/messages.test.ts +++ b/test/unit/messages.test.ts @@ -67,14 +67,14 @@ describe('Messages', () => { it('should return single string from array of messages', () => { expect(messages.getMessage('manyMsgs', ['blah', 864])).to.equal( - `hello blah 864${EOL}world blah 864${EOL}test message 2 blah and 864` + `hello${EOL}world${EOL}test message 2 blah and 864` ); }); it('should return multiple string from array of messages', () => { expect(messages.getMessages('manyMsgs', ['blah', 864])).to.deep.equal([ - 'hello blah 864', - 'world blah 864', + 'hello', + 'world', 'test message 2 blah and 864', ]); });