summaryrefslogtreecommitdiffhomepage
path: root/test/node/write_callback/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/node/write_callback/app.js')
-rw-r--r--[-rwxr-xr-x]test/node/write_callback/app.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/node/write_callback/app.js b/test/node/write_callback/app.js
index 3a9e51e8..71eb4116 100755..100644
--- a/test/node/write_callback/app.js
+++ b/test/node/write_callback/app.js
@@ -1,8 +1,7 @@
-#!/usr/bin/env node
var fs = require('fs');
-require('unit-http').createServer(function (req, res) {
+require('http').createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
var a = 'world';
res.write('hello', 'utf8', function() {