Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
mja00 committed Nov 27, 2024
1 parent 6915100 commit b3efe16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/foo.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit b3efe16

Please sign in to comment.