Changeset 13468 for trunk/tests/phpunit/testcases/routing/root-profiles.php
- Timestamp:
- 05/03/2023 06:18:23 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/routing/root-profiles.php
r13461 r13468 56 56 */ 57 57 public function test_member_permalink_when_members_page_is_nested_under_wp_page() { 58 $this->markTestSkipped(); 59 60 /** 61 * This is no more supported in BuddyPress. 62 */ 63 58 64 $this->set_permalink_structure( '/%postname%/' ); 59 65 $p = self::factory()->post->create( array( 60 'post_type' => 'p age',66 'post_type' => 'post', 61 67 'post_name' => 'foo', 62 68 ) ); … … 68 74 ) ); 69 75 70 $ domain = home_url( $this->u->user_nicename);71 $this->go_to( $ domain);76 $url = bp_members_get_user_url( $this->u->ID ); 77 $this->go_to( $url ); 72 78 73 79 $this->assertTrue( bp_is_user() );
Note: See TracChangeset
for help on using the changeset viewer.