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/promise_handler | |
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/promise_handler')
-rwxr-xr-x | test/node/promise_handler/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/node/promise_handler/app.js b/test/node/promise_handler/app.js index 54df09d1..60b0c3bb 100755 --- a/test/node/promise_handler/app.js +++ b/test/node/promise_handler/app.js @@ -5,7 +5,7 @@ var fs = require('fs'); require('unit-http').createServer(function (req, res) { res.end(); - if (req.headers['X-Write-Call']) { + if (req.headers['x-write-call']) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.write('blah'); } |