From fa8abcbf3b5b26cd1ef3e61a28c2bbf6d9d9793f Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 19 Sep 2008 20:25:03 +0000 Subject: =?UTF-8?q?-=20Patch=20#305740=20by=20catch,=20Benjamin=20Melan?= =?UTF-8?q?=C3=A7on:=20added=20an=20edit=20tab=20to=20taxonomy=20term=20pa?= =?UTF-8?q?ges.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/blogapi/blogapi.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/blogapi') 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); -- cgit v1.2.3