From 2f4105d5244f7e73a656b050b7aa19b12b3fa64c Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Tue, 27 Sep 2016 19:37:23 +0000 Subject: [PATCH] Toolbar: Don't run the test from [38660] for multisite. See #37949. git-svn-id: https://develop.svn.wordpress.org/trunk@38661 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/adminbar.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/phpunit/tests/adminbar.php b/tests/phpunit/tests/adminbar.php index c673038ed8..2646a6137e 100644 --- a/tests/phpunit/tests/adminbar.php +++ b/tests/phpunit/tests/adminbar.php @@ -412,6 +412,10 @@ class Tests_AdminBar extends WP_UnitTestCase { * @ticket 37949 */ public function test_admin_bar_does_not_add_about_page_url() { + if ( is_multisite() ) { + $this->markTestSkipped( 'Test does not run in multisite' ); + } + wp_set_current_user( self::$no_role_id ); $wp_admin_bar = $this->get_standard_admin_bar();