Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/05/2018 05:24:17 PM (6 years ago)
Author:
boonebgorges
Message:

Tests: Move wpmu_new_blog and delete_blog expectedDeprecated calls into test logic.

Use of the @expectedDeprecated annotation means that the deprecation notice is
expected across all versions of WordPress, while we in fact need to suppress the
notices only on WP 5.0+.

See #7984.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/testcases/routing/url.php

    r12245 r12246  
    4242        // (3) Multisite, root blog other than 1
    4343        if ( is_multisite() ) {
    44             $this->setExpectedDeprecated( 'wpmu_new_blog' );
     44            if ( function_exists( 'wp_initialize_site' ) ) {
     45                $this->setExpectedDeprecated( 'wpmu_new_blog' );
     46            }
    4547
    4648            $original_root_blog = bp_get_root_blog_id();
Note: See TracChangeset for help on using the changeset viewer.