summaryrefslogtreecommitdiffhomepage
path: root/test/node/promise_handler/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/node/promise_handler/app.js')
-rwxr-xr-xtest/node/promise_handler/app.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/node/promise_handler/app.js b/test/node/promise_handler/app.js
index 60b0c3bb..51c3666b 100755
--- a/test/node/promise_handler/app.js
+++ b/test/node/promise_handler/app.js
@@ -6,8 +6,7 @@ require('unit-http').createServer(function (req, res) {
res.end();
if (req.headers['x-write-call']) {
- res.writeHead(200, {'Content-Type': 'text/plain'});
- res.write('blah');
+ res.writeHead(200, {'Content-Type': 'text/plain'}).write('blah');
}
Promise.resolve().then(() => {