From 5ee2ded1fdc2ee8b2091c65fb84149fbcabb769a Mon Sep 17 00:00:00 2001 From: Bryan Helmig Date: Sat, 3 Sep 2016 15:00:33 -0700 Subject: [PATCH] test: fix redirect (#53) --- test/basic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/basic.js b/test/basic.js index 5e81ec5..408d4a2 100644 --- a/test/basic.js +++ b/test/basic.js @@ -35,7 +35,7 @@ test('landing page', function(done) { }); res.on('end', function() { - assert(body.indexOf('Localtunnel ~ Expose yourself to the world') > 0); + assert(body.indexOf('Redirecting to https://localtunnel.github.io/www/') > 0); done(); }); });