diff --git a/tests/phpunit/tests/user/capabilities.php b/tests/phpunit/tests/user/capabilities.php index 9375054845..91d539dd52 100644 --- a/tests/phpunit/tests/user/capabilities.php +++ b/tests/phpunit/tests/user/capabilities.php @@ -1334,17 +1334,11 @@ class Tests_User_Capabilities extends WP_UnitTestCase { $this->assertFalse( current_user_can( 'edit_user', $other_user->ID ) ); } - function test_multisite_user_can_edit_self() { - if ( ! is_multisite() ) { - $this->markTestSkipped( 'Test only runs in multisite' ); - return; + function test_user_can_edit_self() { + foreach ( self::$users as $role => $user ) { + wp_set_current_user( $user->ID ); + $this->assertTrue( current_user_can( 'edit_user', $user->ID ), "User with role {$role} should have the capability to edit their own profile" ); } - - $user = self::$users['administrator']; - - wp_set_current_user( $user->ID ); - - $this->assertTrue( current_user_can( 'edit_user', $user->ID ) ); } /**