From 97ca914178e50898335365d36403379e0a3901aa Mon Sep 17 00:00:00 2001 From: Roman Shtylman Date: Sun, 2 Aug 2015 11:59:27 -0700 Subject: [PATCH] fix tests --- test/basic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/basic.js b/test/basic.js index fc89044..62666e0 100644 --- a/test/basic.js +++ b/test/basic.js @@ -34,7 +34,7 @@ test('landing page', function(done) { }); res.on('end', function() { - assert(body.indexOf('

expose yourself to the world

') > 0); + assert(body.indexOf('Localtunnel ~ Expose yourself to the world') > 0); done(); }); });