We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f66c91e commit 9a4ff5cCopy full SHA for 9a4ff5c
1 file changed
test/nodes/core/parsers/70-CSV_spec.js
@@ -227,12 +227,12 @@ describe('CSV node', function() {
227
var n2 = helper.getNode("n2");
228
n2.on("input", function(msg) {
229
try {
230
- msg.should.have.property('payload', '1,2,3,4\n');
+ msg.should.have.property('payload', '0,1,2,3,4\n');
231
done();
232
}
233
catch(e) { done(e); }
234
});
235
- var testJson = [1,2,3,4];
+ var testJson = [0,1,2,3,4];
236
n1.emit("input", {payload:testJson});
237
238
@@ -245,12 +245,12 @@ describe('CSV node', function() {
245
246
247
248
- msg.should.have.property('payload', '1,2,3,4\n4,3,2,1\n');
+ msg.should.have.property('payload', '0,1,2,3,4\n4,3,2,1,0\n');
249
250
251
252
253
- var testJson = [[1,2,3,4],[4,3,2,1]];
+ var testJson = [[0,1,2,3,4],[4,3,2,1,0]];
254
255
256
0 commit comments