mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
Build/Test tools: Don't skip tests which rely on OpenSSL when the openssl extension isn't loaded.
See #41676 git-svn-id: https://develop.svn.wordpress.org/trunk@41278 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
class Tests_HTTP_Functions extends WP_UnitTestCase {
|
||||
public function setUp() {
|
||||
if ( ! extension_loaded( 'openssl' ) ) {
|
||||
$this->markTestSkipped( 'Tests_HTTP_Functions requires openssl.' );
|
||||
$this->fail( 'Tests_HTTP_Functions requires openssl.' );
|
||||
}
|
||||
|
||||
parent::setUp();
|
||||
|
||||
Reference in New Issue
Block a user