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/blogapi | |
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/blogapi')
-rw-r--r-- | modules/blogapi/blogapi.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blogapi/blogapi.test b/modules/blogapi/blogapi.test index cd0475433..b1ac8b1b0 100644 --- a/modules/blogapi/blogapi.test +++ b/modules/blogapi/blogapi.test @@ -117,7 +117,7 @@ class BlogAPITestCase extends DrupalWebTestCase { $edit = array(); $edit['name'] = $vocab; $edit['nodes[blog]'] = TRUE; - $this->drupalPost('admin/content/taxonomy/add/vocabulary', $edit, t('Save')); + $this->drupalPost('admin/content/taxonomy/add', $edit, t('Save')); $this->assertRaw(t('Created new vocabulary %vocab.', array('%vocab' => $edit['name'])), t('Taxonomy vocabulary added.')); $vocab_arr = taxonomy_get_vocabularies(); @@ -146,7 +146,7 @@ class BlogAPITestCase extends DrupalWebTestCase { function addTerm($vid, $term) { $edit = array(); $edit['name'] = $term; - $this->drupalPost('admin/content/taxonomy/' . $vid . '/add/term', $edit, t('Save')); + $this->drupalPost('admin/content/taxonomy/' . $vid . '/add', $edit, t('Save')); $this->assertRaw(t('Created new term %term.', array('%term' => $edit['name'])), t('Taxonomy term added.')); $tree = taxonomy_get_tree($vid); |