Remove failing unit test after [30090].

Fixes #30194.


git-svn-id: https://develop.svn.wordpress.org/trunk@30160 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-11-01 21:10:23 +00:00
parent 4315c9c5c3
commit 9817ecd92e
1 changed files with 0 additions and 15 deletions

View File

@ -41,21 +41,6 @@ class Tests_Canonical_HTTPS extends Tests_Canonical {
}
/**
* @ticket 27954
*/
public function test_http_request_with_https_home() {
add_filter( 'home_url', array( $this, 'set_https' ) );
$redirect = redirect_canonical( $this->http, false );
$this->assertEquals( $redirect, $this->https );
remove_filter( 'home_url', array( $this, 'set_https' ) );
}
/**
* @ticket 27954
*/