From aea73a1c56666720642c0132bd89b5f9e8fe2ad6 Mon Sep 17 00:00:00 2001 From: Sergi Almacellas Abellana Date: Mon, 6 Feb 2017 16:21:11 +0100 Subject: [PATCH] Remove extra coma and config from example test case --- tests/test-cases.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-cases.js b/tests/test-cases.js index 8c54cda..231c986 100644 --- a/tests/test-cases.js +++ b/tests/test-cases.js @@ -1211,8 +1211,8 @@ var PARSE_TESTS = [ }, { description: "Carriage return in header inside quotes, with line feed endings", - input: '"a\r\na","b"\n"c","d"\n"e","f"\n,"g","h"\n"i","j"\n', - config: { skipEmptyLines: true }, + input: '"a\r\na","b"\n"c","d"\n"e","f"\n"g","h"\n"i","j"\n', + config: {}, expected: { data: [['a\r\na', 'b'], ['c', 'd'], ['e', 'f'], ['g', 'h']['i', 'j']], errors: []