Skip to content

Commit

Permalink
fix(dev): fix header value
Browse files Browse the repository at this point in the history
Signed-off-by: David Calavera <david.calavera@gmail.com>
  • Loading branch information
calavera committed Jan 14, 2021
1 parent 6713a58 commit 61b58ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/command.dev.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ testMatrix.forEach(({ args }) => {

t.is(response.headers.host, `${server.host}:${server.port}`)
t.is(response.headers['content-type'], `multipart/form-data; boundary=${expectedBoundary}`)
t.is(response.headers['content-length'], 164)
t.is(response.headers['content-length'], '164')
t.is(response.httpMethod, 'POST')
t.is(response.isBase64Encoded, false)
t.is(response.path, '/api/echo')
Expand Down

0 comments on commit 61b58ae

Please sign in to comment.