From 8dd8a4a38bfc85c405515fe70b471c9141ea52a6 Mon Sep 17 00:00:00 2001 From: Bryan Ngo Date: Sat, 7 Jul 2018 16:32:04 -0700 Subject: [PATCH] build should be passing --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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