summaryrefslogtreecommitdiff
path: root/test/simple/test-http-write-empty-string.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple/test-http-write-empty-string.js')
-rw-r--r--test/simple/test-http-write-empty-string.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/simple/test-http-write-empty-string.js b/test/simple/test-http-write-empty-string.js
index 1e4a1698db..5378d81777 100644
--- a/test/simple/test-http-write-empty-string.js
+++ b/test/simple/test-http-write-empty-string.js
@@ -2,9 +2,8 @@ var common = require('../common');
var assert = require('assert');
var http = require('http');
-assert = require('assert');
-server = http.createServer(function (request, response) {
+var server = http.createServer(function (request, response) {
console.log('responding to ' + request.url);
response.writeHead(200, {'Content-Type': 'text/plain'});