From 4c520101a0405e9b17f6c6bb89095437f69f4f0d Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Tue, 9 Jul 2024 13:51:22 -0500 Subject: [PATCH] chore: revert test --- test/unit/messagesTest.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unit/messagesTest.ts b/test/unit/messagesTest.ts index 63ab1f11b..a72e1a10b 100644 --- a/test/unit/messagesTest.ts +++ b/test/unit/messagesTest.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${EOL}world${EOL}test message 2 blah and 864` + `hello blah 864${EOL}world blah 864${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', - 'world', + 'hello blah 864', + 'world blah 864', 'test message 2 blah and 864', ]); });