From a6d5428ffd18010709585e20048e32e31285abce Mon Sep 17 00:00:00 2001 From: Jamie Seter Date: Mon, 28 Oct 2019 16:30:59 -0400 Subject: [PATCH] #713 remove duplicate test. --- tests/test-cases.js | 16 ---------------- 1 file changed, 16 deletions(-) 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',