diff --git a/test/test.js b/test/test.js index 4ef1db4..4aac5e6 100644 --- a/test/test.js +++ b/test/test.js @@ -1,6 +1,6 @@ var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); - res.end('Hello Travis!\n') + res.end('Hello Travis!\n'); }).listen(1337, '127.0.0.1'); console.log('Server running at http://127.0.0.1:1337/'); \ No newline at end of file