Changeset 12246 for trunk/tests/phpunit/testcases/activity/functions.php
- Timestamp:
- 10/05/2018 05:24:17 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/activity/functions.php
r12245 r12246 805 805 * @group bp_activity_format_activity_action_custom_post_type_post_ms 806 806 * @group activity_tracking 807 * @expectedDeprecated wpmu_new_blog808 807 */ 809 808 public function test_bp_activity_format_activity_action_custom_post_type_post_ms() { 810 809 if ( ! is_multisite() ) { 811 810 $this->markTestSkipped(); 811 } 812 813 if ( function_exists( 'wp_initialize_site' ) ) { 814 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 812 815 } 813 816 … … 918 921 * @group bp_activity_format_activity_action_custom_post_type_post_ms 919 922 * @group activity_tracking 920 * @expectedDeprecated wpmu_new_blog921 923 */ 922 924 public function test_bp_activity_format_activity_action_custom_string_post_type_post_ms() { 923 925 if ( ! is_multisite() ) { 924 926 $this->markTestSkipped(); 927 } 928 929 if ( function_exists( 'wp_initialize_site' ) ) { 930 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 925 931 } 926 932 … … 1056 1062 public function test_bp_activity_format_activity_action_custom_post_type_comment() { 1057 1063 if ( is_multisite() ) { 1058 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 1064 if ( function_exists( 'wp_initialize_site' ) ) { 1065 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 1066 } 1067 1059 1068 $b = self::factory()->blog->create(); 1060 1069 switch_to_blog( $b );
Note: See TracChangeset
for help on using the changeset viewer.