Skip to content

Commit

Permalink
Bump dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
simov committed Jan 24, 2021
1 parent e4d20b6 commit 1419e2b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"nyc": "^15.1.0",
"qs": "^6.9.4",
"request-cookie": "^1.0.0",
"request-logs": "^2.1.0",
"request-multipart": "0.1.0",
"request-oauth": "^1.0.0"
"request-logs": "^2.1.3",
"request-multipart": "^1.0.0",
"request-oauth": "^1.0.1"
},
"bin": {},
"main": "./compose.js",
Expand Down
6 changes: 3 additions & 3 deletions test/request/length.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ describe('length', () => {
)
})

it('request-multipart + knownLength', async () => {
it('request-multipart + known length', async () => {
var options = {headers: {}}
var body = multipart({
file: {
value: fs.createReadStream(file.binary),
options: {knownLength: 5}
body: fs.createReadStream(file.binary),
options: {length: 5}
}
})({options: {headers: {}}}).body
t.ok(
Expand Down

0 comments on commit 1419e2b

Please sign in to comment.