From 30d6daf60fce429f5f559252fa86ee78200652c4 Mon Sep 17 00:00:00 2001 From: Olaf Conijn Date: Sat, 15 Jul 2023 14:58:14 +0200 Subject: [PATCH] chore: fix test --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index 7ebf2ae..e60fee8 100644 --- a/test.js +++ b/test.js @@ -35,7 +35,7 @@ describe('wrap', function () { }); it('should trim trailing whitespace (even for empty lines):', function () { - assert.equal(wrap("a \n\nb \n \nc\t", {trim: true}), 'a\nb\nc'); + assert.equal(wrap("a \n\nb \n \nc\t", {trim: true}), 'a\n\nb\n\nc'); }); it('should handle strings with just newlines', function () {