diff --git a/core/modules/user/src/Tests/UserAdminTourTest.php b/core/modules/user/src/Tests/UserAdminTourTest.php index 9c34cd8..8bd29a5 100644 --- a/core/modules/user/src/Tests/UserAdminTourTest.php +++ b/core/modules/user/src/Tests/UserAdminTourTest.php @@ -29,9 +29,7 @@ class UserAdminTourTest extends TourTestBasic { * @var array * A list of pages to test. */ - protected $tips = array( - 'admin/people' => array(), - ); + protected $tips = array('admin/people' => array()); /** * The permissions required for a logged in user to test tour tips. @@ -41,21 +39,4 @@ class UserAdminTourTest extends TourTestBasic { */ protected $permissions = array('access tour', 'administer users'); - /** - * {@inheritdoc} - */ - protected function setUp() { - parent::setUp(); - $this->adminUser = $this->drupalCreateUser(array('administer users', 'access tour')); - $this->drupalLogin($this->adminUser); - } - - /** - * Tests user list tour tip availability. - */ - public function testUserListTour() { - $this->drupalGet('admin/people'); - $this->assertTourTips(); - } - }