Browse Source

#713 remove duplicate test.

pull/730/head
Jamie Seter 5 years ago
parent
commit
a6d5428ffd
  1. 16
      tests/test-cases.js

16
tests/test-cases.js

@ -586,22 +586,6 @@ var CORE_PARSER_TESTS = [ @@ -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',

Loading…
Cancel
Save