Make WordPress Core

Changeset 35146


Ignore:
Timestamp:
10/13/2015 07:30:34 PM (9 years ago)
Author:
johnbillion
Message:

Skip the pluggable function signature tests when an external object cache is in use.

See #31491

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/pluggable.php

    r35145 r35146  
    1515     */
    1616    public function testPluggableFunctionSignaturesMatch( $function ) {
     17
     18        if ( wp_using_ext_object_cache() ) {
     19            // #31491
     20            $this->markTestSkipped( 'Pluggable function signatures are not tested when an external object cache is in use.' );
     21        }
    1722
    1823        $signatures = $this->getPluggableFunctionSignatures();
Note: See TracChangeset for help on using the changeset viewer.