From b3efe16ede2de509868766f8c612e7ccbdd01e7c Mon Sep 17 00:00:00 2001 From: Matt Artist Date: Wed, 27 Nov 2024 12:55:31 -0500 Subject: [PATCH] fix: test --- test/foo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/foo.js b/test/foo.js index 7e562b7..1da735c 100644 --- a/test/foo.js +++ b/test/foo.js @@ -400,7 +400,7 @@ test('ignores invalid line (=)', function(t){ test("unsafe escape values", function(t){ t.equal(ini.unsafe(''), ''); - t.equal(ini.unsafe('x;y'), 'xy'); + t.equal(ini.unsafe('x;y'), 'x;y'); t.equal(ini.unsafe('x # y'), 'x'); t.equal(ini.unsafe('x "\\'), 'x "\\'); t.end();