Browse Source

fixing language on test descriptions

pull/544/head
jaymeans 7 years ago
parent
commit
2e1d7b7c1d
  1. 4
      tests/test-cases.js

4
tests/test-cases.js

@ -1350,7 +1350,7 @@ var PARSE_TESTS = [ @@ -1350,7 +1350,7 @@ var PARSE_TESTS = [
}
},
{
description: "Parsing with skipNoContentLines and regex special char as quoteChar",
description: "Parsing with skipEmptyLines set to 'greedy' and regex special char as quoteChar",
notes: "Must skip lines correctly with reserved regex char as quoteChar",
input: 'a,b\n\n,\nc,d\n , \n]],] ]\n ] ] , ] ]\n,,,,\n],,,],],]\n',
config: { skipEmptyLines: 'greedy', quoteChar: ']' },
@ -1360,7 +1360,7 @@ var PARSE_TESTS = [ @@ -1360,7 +1360,7 @@ var PARSE_TESTS = [
}
},
{
description: "Parsing with skipNoContentLines and regex special char as delimiter",
description: "Parsing with skipEmptyLines set to 'greedy' and regex special char as delimiter",
notes: "Must skip lines correctly with reserved regex char as delimiter",
input: 'a]b\n\n]\nc]d\n ] \n""]" "\n " " ] " "\n]]]]\n"]]]"]"]"\n',
config: { skipEmptyLines: 'greedy', delimiter: ']' },

Loading…
Cancel
Save