Skip to content

Commit

Permalink
update tc for multiple values
Browse files Browse the repository at this point in the history
  • Loading branch information
yiminghe committed Sep 24, 2014
1 parent 5a8d0ba commit ba8c8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/legacy/simple/test-incoming-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ test(function parse() {
});

var parseCbOk = function (err, fields, files) {
assert.deepEqual(fields, {field1: 'bar', field2: 'nice'});
assert.deepEqual(fields, {field1: ['foo', 'bar'], field2: 'nice'});
assert.deepEqual(files, {file1: '2', file2: '3'});
};
form.parse(REQ, parseCbOk);
Expand Down

0 comments on commit ba8c8b4

Please sign in to comment.