From 678f751275086b46f3eb7a84b2a1326d2689b0bd Mon Sep 17 00:00:00 2001 From: Ariya Hidayat Date: Sat, 1 Jun 2013 19:52:38 -0700 Subject: [PATCH] Unit test: tweak secure connection check. The main wikipedia page can be slow to load and thus triggers the timeout. Let's use the fast Google site so that we don't get flaky outcome. Issue #10882: https://github.com/ariya/phantomjs/issues/10882 --- test/webpage-spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/webpage-spec.js b/test/webpage-spec.js index 7e8659a8..4a1c67b4 100644 --- a/test/webpage-spec.js +++ b/test/webpage-spec.js @@ -1069,7 +1069,7 @@ describe("WebPage object", function() { it('should open url using secure connection', function() { var page = require('webpage').create(); - var url = 'https://en.wikipedia.org'; + var url = 'https://www.google.com/m'; var handled = false;