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
This commit is contained in:
Aaron Jorbin 2015-09-26 17:47:24 +00:00
parent eb8b241559
commit aedc063418

View File

@ -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() {