summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_return
diff options
context:
space:
mode:
Diffstat (limited to 'test/node/write_return')
-rwxr-xr-xtest/node/write_return/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/node/write_return/app.js b/test/node/write_return/app.js
index 3ae967c6..82dfbc6e 100755
--- a/test/node/write_return/app.js
+++ b/test/node/write_return/app.js
@@ -1,6 +1,6 @@
#!/usr/bin/env node
require('unit-http').createServer(function (req, res) {
- res.writeHead(200, {'Content-Type': 'text/plain'});
- res.end(res.write('body').toString());
+ res.writeHead(200, {'Content-Type': 'text/plain'})
+ .end(res.write('body').toString());
}).listen(7080);