From aedc06341862cb4f206c9e5631b693b4f8d27a32 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Sat, 26 Sep 2015 17:47:24 +0000 Subject: [PATCH] Use an http URL rather then an https URL for tests Travis doesn't properly support SSL on older versions of PHP. Since we don't test for SSL support in all of the tests, this can cause these tests to fail. This changes a URL introduced in [34568] See #33968 git-svn-id: https://develop.svn.wordpress.org/trunk@34600 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/http/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/http/base.php b/tests/phpunit/tests/http/base.php index 54764b78af..d3ec48546f 100644 --- a/tests/phpunit/tests/http/base.php +++ b/tests/phpunit/tests/http/base.php @@ -13,7 +13,7 @@ abstract class WP_HTTP_UnitTestCase extends WP_UnitTestCase { // You can use your own version of data/WPHTTP-testcase-redirection-script.php here. var $redirection_script = 'http://api.wordpress.org/core/tests/1.0/redirection.php'; - var $fileStreamUrl = 'https://s.w.org/screenshots/3.9/dashboard.png'; + var $fileStreamUrl = 'http://s.w.org/screenshots/3.9/dashboard.png'; function setUp() {