Skip to content

Commit

Permalink
Merge pull request #23 from unexpectedjs/depfu/update/npm/form-data-2…
Browse files Browse the repository at this point in the history
….3.2

Upgrade form-data to version 2.3.2
  • Loading branch information
papandreou committed May 20, 2018
2 parents 28b7672 + 604a01f commit 5e20a8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -53,7 +53,7 @@
},
"dependencies": {
"bufferedstream": "^1.6.0",
"form-data": "^0.2.0",
"form-data": "^2.3.2",
"is-stream": "^1.1.0",
"messy": "^6.6.1",
"qs": "^6.5.1",
Expand Down
6 changes: 3 additions & 3 deletions test/unexpectedExpress.js
Expand Up @@ -668,7 +668,7 @@ describe('unexpectedExpress', function () {
'Content-Type: quux/baz\r\n' +
'\r\n' +
'\x02\x03\r\n' +
'--' + boundary + '--'
'--' + boundary + '--\r\n'
).then(function () {
res.status(200).end();
}).caught(next);
Expand Down Expand Up @@ -720,7 +720,7 @@ describe('unexpectedExpress', function () {
'Content-Type: image/png\r\n' +
'\r\n' +
'\x08\x06\x07\x05\x03\x00\t\r\n' +
'--' + boundary + '--'
'--' + boundary + '--\r\n'
).then(function () {
res.status(200).end();
}).caught(next);
Expand Down Expand Up @@ -770,7 +770,7 @@ describe('unexpectedExpress', function () {
'Content-Disposition: form-data; name="quux"\r\n' +
'\r\n' +
'æøå☺\r\n' +
'--' + boundary + '--'
'--' + boundary + '--\r\n'
).then(function () {
res.status(200).end();
}).caught(next);
Expand Down

0 comments on commit 5e20a8d

Please sign in to comment.