@@ -75,8 +75,6 @@ function test_merging_existing_meta_values() {
7575 * @group ms-excluded
7676 */
7777 public function test_admin_bar_contains_correct_links_for_users_with_no_role () {
78- $ this ->skipWithMultisite ();
79-
8078 $ this ->assertFalse ( user_can ( self ::$ no_role_id , 'read ' ) );
8179
8280 wp_set_current_user ( self ::$ no_role_id );
@@ -102,8 +100,6 @@ public function test_admin_bar_contains_correct_links_for_users_with_no_role() {
102100 * @group ms-excluded
103101 */
104102 public function test_admin_bar_contains_correct_links_for_users_with_role () {
105- $ this ->skipWithMultisite ();
106-
107103 $ this ->assertTrue ( user_can ( self ::$ editor_id , 'read ' ) );
108104
109105 wp_set_current_user ( self ::$ editor_id );
@@ -132,8 +128,6 @@ public function test_admin_bar_contains_correct_links_for_users_with_role() {
132128 * @group ms-required
133129 */
134130 public function test_admin_bar_contains_correct_links_for_users_with_no_role_on_blog () {
135- $ this ->skipWithoutMultisite ();
136-
137131 $ blog_id = self ::factory ()->blog ->create ( array (
138132 'user_id ' => self ::$ admin_id ,
139133 ) );
@@ -181,8 +175,6 @@ public function test_admin_bar_contains_correct_links_for_users_with_no_role_on_
181175 * @group ms-required
182176 */
183177 public function test_admin_bar_contains_correct_links_for_users_with_no_role_on_network () {
184- $ this ->skipWithoutMultisite ();
185-
186178 $ this ->assertTrue ( user_can ( self ::$ admin_id , 'read ' ) );
187179 $ this ->assertFalse ( user_can ( self ::$ no_role_id , 'read ' ) );
188180
@@ -424,8 +416,6 @@ public function test_admin_bar_has_no_archives_link_for_pages() {
424416 * @group ms-excluded
425417 */
426418 public function test_admin_bar_contains_correct_about_link_for_users_with_role () {
427- $ this ->skipWithMultisite ();
428-
429419 wp_set_current_user ( self ::$ editor_id );
430420
431421 $ wp_admin_bar = $ this ->get_standard_admin_bar ();
@@ -443,8 +433,6 @@ public function test_admin_bar_contains_correct_about_link_for_users_with_role()
443433 * @group ms-excluded
444434 */
445435 public function test_admin_bar_contains_correct_about_link_for_users_with_no_role () {
446- $ this ->skipWithMultisite ();
447-
448436 wp_set_current_user ( self ::$ no_role_id );
449437
450438 $ wp_admin_bar = $ this ->get_standard_admin_bar ();
@@ -464,8 +452,6 @@ public function test_admin_bar_contains_correct_about_link_for_users_with_no_rol
464452 * @group ms-required
465453 */
466454 public function test_admin_bar_contains_correct_about_link_for_users_with_no_role_in_multisite () {
467- $ this ->skipWithoutMultisite ();
468-
469455 // User is not a member of a site.
470456 remove_user_from_blog ( self ::$ no_role_id , get_current_blog_id () );
471457
@@ -582,8 +568,6 @@ public function test_customize_link() {
582568 * @group ms-required
583569 */
584570 public function test_my_sites_network_menu_for_regular_user () {
585- $ this ->skipWithoutMultisite ();
586-
587571 wp_set_current_user ( self ::$ editor_id );
588572
589573 $ wp_admin_bar = $ this ->get_standard_admin_bar ();
@@ -599,8 +583,6 @@ public function test_my_sites_network_menu_for_regular_user() {
599583 * @group ms-required
600584 */
601585 public function test_my_sites_network_menu_for_super_admin () {
602- $ this ->skipWithoutMultisite ();
603-
604586 wp_set_current_user ( self ::$ editor_id );
605587
606588 grant_super_admin ( self ::$ editor_id );
@@ -618,8 +600,6 @@ public function test_my_sites_network_menu_for_super_admin() {
618600 * @group ms-required
619601 */
620602 public function test_my_sites_network_menu_for_regular_user_with_network_caps () {
621- $ this ->skipWithoutMultisite ();
622-
623603 global $ current_user ;
624604
625605 $ network_user_caps = array ( 'manage_network ' , 'manage_network_themes ' , 'manage_network_plugins ' );
0 commit comments