diff options
Diffstat (limited to 'test/node/mirror')
-rw-r--r--[-rwxr-xr-x] | test/node/mirror/app.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/node/mirror/app.js b/test/node/mirror/app.js index 1488917e..bdefe1cd 100755..100644 --- a/test/node/mirror/app.js +++ b/test/node/mirror/app.js @@ -1,6 +1,5 @@ -#!/usr/bin/env node -require('unit-http').createServer(function (req, res) { +require('http').createServer(function (req, res) { let body = ''; req.on('data', chunk => { body += chunk.toString(); |