diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-04-18 19:27:12 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-04-18 19:27:12 +0300 |
commit | 0c12afbf6a591c54236331219770836c931abf45 (patch) | |
tree | 55555e417617496494c7863e7b63579c3d91fcd7 /test/node/variables | |
parent | c6e96647a1fb71821a7e3e40b7b798da0f7c0e6b (diff) | |
download | unit-0c12afbf6a591c54236331219770836c931abf45.tar.gz unit-0c12afbf6a591c54236331219770836c931abf45.tar.bz2 |
Tests: using low-case header names in Node.js tests.
Diffstat (limited to 'test/node/variables')
-rwxr-xr-x | test/node/variables/app.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/node/variables/app.js b/test/node/variables/app.js index 968afba5..4ed94d09 100755 --- a/test/node/variables/app.js +++ b/test/node/variables/app.js @@ -11,9 +11,9 @@ require('unit-http').createServer(function (req, res) { res.setHeader('Server-Protocol', req.httpVersion); res.setHeader('Request-Raw-Headers', req.rawHeaders.join()); res.setHeader('Content-Length', Buffer.byteLength(body)); - res.setHeader('Content-Type', req.headers['Content-Type']); - res.setHeader('Custom-Header', req.headers['Custom-Header']); - res.setHeader('Http-Host', req.headers['Host']); + res.setHeader('Content-Type', req.headers['content-type']); + res.setHeader('Custom-Header', req.headers['custom-header']); + res.setHeader('Http-Host', req.headers['host']); res.writeHead(200, {}); res.end(body); }); |