diff --git a/tests/test-cases.js b/tests/test-cases.js index f8346cc..275cc28 100644 --- a/tests/test-cases.js +++ b/tests/test-cases.js @@ -586,22 +586,6 @@ var CORE_PARSER_TESTS = [ errors: [] } }, - { - description: "Quoted field has invalid trailing quote after delimiter with a valid closer", - input: '"a,"b,c"\nd,e,f', - notes: "The input is malformed, opening quotes identified, trailing quote is malformed. Trailing quote should be escaped or followed by valid new line or delimiter to be valid", - config: { strictQuote: true }, - expected: { - data: [['"a','b,c'], ['d', 'e', 'f']], - errors: [{ - "type": "Quotes", - "code": "InvalidQuotes", - "message": "Trailing quote on quoted field is malformed", - "row": 0, - "index": 0 - }] - } - }, { description: "Quoted field has invalid trailing quote after delimiter with a valid closer in strict quote mode", input: '"a,"b,c"\nd,e,f',