Changeset 12245
- Timestamp:
- 10/05/2018 04:44:54 PM (6 years ago)
- Location:
- trunk/tests/phpunit/testcases
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/activity/functions.php
r12244 r12245 1053 1053 * @group bp_activity_format_activity_action_custom_post_type_post_ms 1054 1054 * @group post_type_comment_activities 1055 * @expectedDeprecated wpmu_new_blog1056 1055 */ 1057 1056 public function test_bp_activity_format_activity_action_custom_post_type_comment() { 1058 1057 if ( is_multisite() ) { 1058 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 1059 1059 $b = self::factory()->blog->create(); 1060 1060 switch_to_blog( $b ); -
trunk/tests/phpunit/testcases/blogs/functions.php
r12244 r12245 734 734 if ( ! is_multisite() ) { 735 735 $this->markTestSkipped(); 736 return;737 736 } 738 737 … … 886 885 * @group bp_blogs_comment_sync_activity_comment 887 886 * @group post_type_comment_activities 888 * @expectedDeprecated wpmu_new_blog889 887 */ 890 888 public function test_bp_blogs_comment_sync_activity_comment_for_custom_post_type() { 891 889 if ( is_multisite() ) { 890 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 892 891 $b = self::factory()->blog->create(); 893 892 switch_to_blog( $b ); -
trunk/tests/phpunit/testcases/core/functions.php
r12243 r12245 696 696 * @group bp_attachments 697 697 * @group bp_upload_dir 698 * @expectedDeprecated wpmu_new_blog699 698 */ 700 699 public function test_bp_upload_dir() { … … 702 701 703 702 if ( is_multisite() ) { 703 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 704 704 $b = self::factory()->blog->create(); 705 705 switch_to_blog( $b ); -
trunk/tests/phpunit/testcases/members/functions.php
r12244 r12245 496 496 /** 497 497 * @group bp_core_activate_signup 498 * @expectedDeprecated wpmu_new_blog499 498 */ 500 499 public function test_bp_core_activate_signup_password() { … … 517 516 518 517 if ( is_multisite() ) { 518 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 519 519 520 $signups['ms-blog'] = array( 'signup_id' => self::factory()->signup->create( array( 520 521 'user_login' => 'msblog', -
trunk/tests/phpunit/testcases/routing/url.php
r12243 r12245 4 4 */ 5 5 class BP_Tests_URL extends BP_UnitTestCase { 6 /**7 * @expectedDeprecated wpmu_new_blog8 */9 6 function test_bp_core_ajax_url() { 10 7 $forced = force_ssl_admin(); … … 45 42 // (3) Multisite, root blog other than 1 46 43 if ( is_multisite() ) { 44 $this->setExpectedDeprecated( 'wpmu_new_blog' ); 45 47 46 $original_root_blog = bp_get_root_blog_id(); 48 47 $blog_id = self::factory()->blog->create( array(
Note: See TracChangeset
for help on using the changeset viewer.