Browse Source

Remove extra coma and config from example test case

pull/542/head
Sergi Almacellas Abellana 8 years ago committed by jaymeans
parent
commit
aea73a1c56
  1. 4
      tests/test-cases.js

4
tests/test-cases.js

@ -1211,8 +1211,8 @@ var PARSE_TESTS = [
}, },
{ {
description: "Carriage return in header inside quotes, with line feed endings", 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', input: '"a\r\na","b"\n"c","d"\n"e","f"\n"g","h"\n"i","j"\n',
config: { skipEmptyLines: true }, config: {},
expected: { expected: {
data: [['a\r\na', 'b'], ['c', 'd'], ['e', 'f'], ['g', 'h']['i', 'j']], data: [['a\r\na', 'b'], ['c', 'd'], ['e', 'f'], ['g', 'h']['i', 'j']],
errors: [] errors: []

Loading…
Cancel
Save