summaryrefslogtreecommitdiff
path: root/modules/profile/profile.test
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-21 14:27:47 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-21 14:27:47 +0000
commit2a123f0ac94cad2771b19ca81b9637f83cb06869 (patch)
treed66931957602be79d49802515f408c651f8699b6 /modules/profile/profile.test
parentfd4020db897e8638d32db5119d25bd3a60febb89 (diff)
downloadbrdo-2a123f0ac94cad2771b19ca81b9637f83cb06869.tar.gz
brdo-2a123f0ac94cad2771b19ca81b9637f83cb06869.tar.bz2
- Patch #549432 by Bohjan, Gábor Hojtsy: create 'people and permissions' section in 'configuration and modules'.
Diffstat (limited to 'modules/profile/profile.test')
-rw-r--r--modules/profile/profile.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/profile/profile.test b/modules/profile/profile.test
index aaa2f8a9b..92b9ee428 100644
--- a/modules/profile/profile.test
+++ b/modules/profile/profile.test
@@ -36,7 +36,7 @@ class ProfileTestCase extends DrupalWebTestCase {
$edit['category'] = $category;
$edit['explanation'] = $this->randomName(50);
- $this->drupalPost('admin/settings/profile/add/' . $type, $edit, t('Save field'));
+ $this->drupalPost('admin/config/people/profile/add/' . $type, $edit, t('Save field'));
$fid = db_query("SELECT fid FROM {profile_field} WHERE title = :title", array(':title' => $title))->fetchField();
$this->assertTrue($fid, t('New Profile field has been entered in the database'));
@@ -107,8 +107,8 @@ class ProfileTestCase extends DrupalWebTestCase {
* The field to be deleted.
*/
function deleteProfileField($field) {
- $this->drupalPost('admin/settings/profile/delete/' . $field['fid'], array(), t('Delete'));
- $this->drupalGet('admin/settings/profile');
+ $this->drupalPost('admin/config/people/profile/delete/' . $field['fid'], array(), t('Delete'));
+ $this->drupalGet('admin/config/people/profile');
$this->assertNoText($field['title'], t('Checking deleted field %title', array('%title' => $field['title'])));
}
}