diff options
Diffstat (limited to 'test/node/variables/app.js')
-rw-r--r--[-rwxr-xr-x] | test/node/variables/app.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/node/variables/app.js b/test/node/variables/app.js index d8cdc20c..a569dddd 100755..100644 --- a/test/node/variables/app.js +++ b/test/node/variables/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(); |