diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-06-13 20:40:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-06-13 20:40:09 +0000 |
commit | daedf71b7c1683a21df35e2f9d8660e89deeea62 (patch) | |
tree | 0dd29e1788ff6fa5c8415bf28dcc390429d15576 /modules/user/user.test | |
parent | bddec37f6df0fdb9171ec826f6961517163934da (diff) | |
download | brdo-daedf71b7c1683a21df35e2f9d8660e89deeea62.tar.gz brdo-daedf71b7c1683a21df35e2f9d8660e89deeea62.tar.bz2 |
- Patch #391412 by JamesAn et al: move contact form, post, and user settings below Site configuration.
Diffstat (limited to 'modules/user/user.test')
-rw-r--r-- | modules/user/user.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/user.test b/modules/user/user.test index 7c3ee18e7..ae0a53c84 100644 --- a/modules/user/user.test +++ b/modules/user/user.test @@ -770,12 +770,12 @@ class UserPermissionsTestCase extends DrupalWebTestCase { */ function testAdministratorRole() { $this->drupalLogin($this->admin_user); - $this->drupalGet('admin/user/settings'); + $this->drupalGet('admin/settings/user'); // Set the user's role to be the administrator role. $edit = array(); $edit['user_admin_role'] = $this->rid; - $this->drupalPost('admin/user/settings', $edit, t('Save configuration')); + $this->drupalPost('admin/settings/user', $edit, t('Save configuration')); // Enable aggregator module and ensure the 'administer news feeds' // permission is assigned by default. |