diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-09-19 20:25:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-09-19 20:25:03 +0000 |
commit | fa8abcbf3b5b26cd1ef3e61a28c2bbf6d9d9793f (patch) | |
tree | 52b5959e0fa775346e2243e995db94e113181c5b /modules/forum/forum.test | |
parent | 1ec9a7b7a6ae3801e7cd0147519aa04be992ad8a (diff) | |
download | brdo-fa8abcbf3b5b26cd1ef3e61a28c2bbf6d9d9793f.tar.gz brdo-fa8abcbf3b5b26cd1ef3e61a28c2bbf6d9d9793f.tar.bz2 |
- Patch #305740 by catch, Benjamin Melançon: added an edit tab to taxonomy term pages.
Diffstat (limited to 'modules/forum/forum.test')
-rw-r--r-- | modules/forum/forum.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.test b/modules/forum/forum.test index ccb74dbf8..92f174eac 100644 --- a/modules/forum/forum.test +++ b/modules/forum/forum.test @@ -134,7 +134,7 @@ class ForumTestCase extends DrupalWebTestCase { ); // Edit the vocabulary. - $this->drupalPost('admin/content/taxonomy/edit/vocabulary/' . $vid, $edit, t('Save')); + $this->drupalPost('admin/content/taxonomy/' . $vid . '/edit', $edit, t('Save')); $this->assertResponse(200); $this->assertRaw(t('Updated vocabulary %name.', array('%name' => $title)), t('Vocabulary was edited')); @@ -158,7 +158,7 @@ class ForumTestCase extends DrupalWebTestCase { ); // Edit the vocabulary. - $this->drupalPost('admin/content/taxonomy/edit/vocabulary/' . $vid, $edit, t('Save')); + $this->drupalPost('admin/content/taxonomy/' . $vid . 'edit', $edit, t('Save')); $this->assertResponse(200); $this->assertRaw(t('Updated vocabulary %name.', array('%name' => $title)), t('Vocabulary was edited')); /* |