summaryrefslogtreecommitdiff
path: root/modules/profile
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-07-20 18:51:36 +0000
committerDries Buytaert <dries@buytaert.net>2009-07-20 18:51:36 +0000
commitd24d954479320116bc01f332c28a8eaab28c3ccd (patch)
tree1c791703bde5429b500e91cabb5845a80e13aff3 /modules/profile
parent999d76e7aa9d9fb1b79b0be171e18e705d9ab7ff (diff)
downloadbrdo-d24d954479320116bc01f332c28a8eaab28c3ccd.tar.gz
brdo-d24d954479320116bc01f332c28a8eaab28c3ccd.tar.bz2
- Patch #521474 by bangpound, JuliaKM et al: rename admin/site-building to admin/structure.
Diffstat (limited to 'modules/profile')
-rw-r--r--modules/profile/profile.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile/profile.test b/modules/profile/profile.test
index 86bcbe863..e60883d59 100644
--- a/modules/profile/profile.test
+++ b/modules/profile/profile.test
@@ -314,13 +314,13 @@ class ProfileBlockTestCase extends DrupalWebTestCase {
function testAuthorInformationBlock() {
// Set block title to confirm that the interface is availble.
- $this->drupalPost('admin/build/block/configure/profile/author-information', array('title' => $this->randomName(8)), t('Save block'));
+ $this->drupalPost('admin/structure/block/configure/profile/author-information', array('title' => $this->randomName(8)), t('Save block'));
$this->assertText(t('The block configuration has been saved.'), t('Block configuration set.'));
// Set the block to a region to confirm block is availble.
$edit = array();
$edit['profile_author-information[region]'] = 'footer';
- $this->drupalPost('admin/build/block', $edit, t('Save blocks'));
+ $this->drupalPost('admin/structure/block', $edit, t('Save blocks'));
$this->assertText(t('The block settings have been updated.'), t('Block successfully move to footer region.'));
}
}