Browse Source

Fix Expected indentation error

pull/746/head
Damir Khakimov 5 years ago
parent
commit
0dc117231e
  1. 12
      tests/test-cases.js

12
tests/test-cases.js

@ -534,7 +534,7 @@ var CORE_PARSER_TESTS = [
errors: [] errors: []
} }
}, },
{ {
description: "Skipped line at beginning", description: "Skipped line at beginning",
input: 'Skipped_line\na,b,c', input: 'Skipped_line\na,b,c',
config: { skipLines: 1 }, config: { skipLines: 1 },
@ -543,13 +543,13 @@ var CORE_PARSER_TESTS = [
errors: [] errors: []
} }
}, },
{ {
description: "Skipped line at beginning followed by comment line", description: "Skipped line at beginning followed by comment line",
input: 'Skipped_line\n# Comment\na,b,c', input: 'Skipped_line\n# Comment\na,b,c',
config: { config: {
skipLines: 1, skipLines: 1,
comments: true comments: true
}, },
expected: { expected: {
data: [['a', 'b', 'c']], data: [['a', 'b', 'c']],
errors: [] errors: []

Loading…
Cancel
Save