diff --git a/modules/user/user.test b/modules/user/user.test index bed823f9b25e5165d8c66fb133581a70852e206f..82d0bcf5fdac942c18a950dbcd4001e28f6b5159 100644 --- a/modules/user/user.test +++ b/modules/user/user.test @@ -962,15 +962,15 @@ class UserBlocksUnitTests extends DrupalWebTestCase { $edit['name'] = $user->name; $edit['pass'] = $user->pass_raw; $this->drupalPost('admin/settings/permissions', $edit, t('Log in')); - $this->assertText(t('Log out'), t('Logged in.')); + $this->assertNoText(t('User login'), t('Logged in.')); // Check that we are still on the same page. $this->assertPattern('!<title.*?' . t('Permissions') . '.*?</title>!', t('Still on the same page after login for access denied page')); // Now, log out and repeat with a non-403 page. - $this->clickLink(t('Log out')); + $this->drupalLogout(); $this->drupalPost('filter/tips', $edit, t('Log in')); - $this->assertText(t('Log out'), t('Logged in.')); + $this->assertNoText(t('User login'), t('Logged in.')); $this->assertPattern('!<title.*?' . t('Compose tips') . '.*?</title>!', t('Still on the same page after login for allowed page')); }