summaryrefslogtreecommitdiffhomepage
path: root/test/node/status_message/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/node/status_message/app.js')
-rw-r--r--[-rwxr-xr-x]test/node/status_message/app.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/node/status_message/app.js b/test/node/status_message/app.js
index e8a798dd..ba51d35b 100755..100644
--- a/test/node/status_message/app.js
+++ b/test/node/status_message/app.js
@@ -1,5 +1,4 @@
-#!/usr/bin/env node
-require('unit-http').createServer(function (req, res) {
+require('http').createServer(function (req, res) {
res.writeHead(200, 'blah', {'Content-Type': 'text/plain'}).end();
}).listen(7080);