Make WordPress Core

Changeset 33125


Ignore:
Timestamp:
07/08/2015 06:23:46 PM (9 years ago)
Author:
johnbillion
Message:

Skip the Tests_Option_Transient::test_nonexistent_key_old_timeout() tests on multisite for now.

See #31130
Fixes #30380

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/option/transient.php

    r33110 r33125  
    119119     */
    120120    function test_nonexistent_key_old_timeout() {
     121        if ( is_multisite() ) {
     122            $this->markTestSkipped( 'Not testable in MS: wpmu_create_blog() defines WP_INSTALLING.' );
     123        }
     124
    121125        // Create a transient
    122126        $key = 'test_transient';
Note: See TracChangeset for help on using the changeset viewer.