diff options
Diffstat (limited to 'test/node/basic/app.js')
-rw-r--r--[-rwxr-xr-x] | test/node/basic/app.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/node/basic/app.js b/test/node/basic/app.js index 7820c474..9092022c 100755..100644 --- a/test/node/basic/app.js +++ b/test/node/basic/app.js @@ -1,6 +1,5 @@ -#!/usr/bin/env node -require('unit-http').createServer(function (req, res) { +require('http').createServer(function (req, res) { res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'}) .end('Hello World\n'); }).listen(7080); |