summaryrefslogtreecommitdiff
path: root/modules/node/node.test
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-09-28 22:14:31 +0000
committerDries Buytaert <dries@buytaert.net>2009-09-28 22:14:31 +0000
commit101d520929bb0e718d5a784d25bb1c5629e59269 (patch)
tree75538396934e9b7dc46f981f4af09d75e501a6a5 /modules/node/node.test
parent65bb91c989b67952d77de8a1e573e857bac015da (diff)
downloadbrdo-101d520929bb0e718d5a784d25bb1c5629e59269.tar.gz
brdo-101d520929bb0e718d5a784d25bb1c5629e59269.tar.bz2
- Patch #508570 by quicksketch, sun | pwolanin, bec: restore URL consistency for node types and menus.
Diffstat (limited to 'modules/node/node.test')
-rw-r--r--modules/node/node.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.test b/modules/node/node.test
index a48782b08..f9af7e4cd 100644
--- a/modules/node/node.test
+++ b/modules/node/node.test
@@ -424,7 +424,7 @@ class SummaryLengthTestCase extends DrupalWebTestCase {
$edit = array (
'teaser_length' => 200,
);
- $this->drupalPost('admin/structure/node-type/page', $edit, t('Save content type'));
+ $this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
// Attempt to access the front page again and check if the summary is now only 200 characters in length.
$this->drupalGet("node");
$this->assertNoRaw($expected, t('Check that the summary is not longer than 200 characters'), 'Node');
@@ -522,7 +522,7 @@ class NodePostSettingsTestCase extends DrupalWebTestCase {
// Set page content type to display post information.
$edit = array();
$edit['node_submitted'] = TRUE;
- $this->drupalPost('admin/structure/node-type/page', $edit, t('Save content type'));
+ $this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
// Create a node.
$edit = array();
@@ -544,7 +544,7 @@ class NodePostSettingsTestCase extends DrupalWebTestCase {
// Set page content type to display post information.
$edit = array();
$edit['node_submitted'] = FALSE;
- $this->drupalPost('admin/structure/node-type/page', $edit, t('Save content type'));
+ $this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
// Create a node.
$edit = array();