Skip to content

Commit 6edf2cd

Browse files
committed
2.2.0
1 parent 561dece commit 6edf2cd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "Felix Geisendörfer <[email protected]> (http://debuggable.com/)",
33
"name": "form-data",
44
"description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.",
5-
"version": "2.1.4",
5+
"version": "2.2.0",
66
"repository": {
77
"type": "git",
88
"url": "git://github.com/form-data/form-data.git"

test/integration/test-custom-filename.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var server = http.createServer(function(req, res) {
3838
assert.strictEqual(files['custom_filename'].type, mime.lookup(knownFile), 'Expects original content-type');
3939

4040
assert('custom_filepath' in files);
41-
assert.strictEqual(files['custom_filepath'].name, relativeFile.replace(/\\/g, '/'), 'Expects custom filename');
41+
assert.strictEqual(files['custom_filepath'].name, relativeFile.replace(/\\/g, '/'), 'Expects custom filepath');
4242
assert.strictEqual(files['custom_filepath'].type, mime.lookup(knownFile), 'Expects original content-type');
4343

4444
assert('unknown_with_filename' in files);

0 commit comments

Comments
 (0)