summaryrefslogtreecommitdiff
path: root/modules/forum
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-03-25 11:53:25 +0000
committerDries Buytaert <dries@buytaert.net>2010-03-25 11:53:25 +0000
commitcca8e7e5acf71bc1462ef9197858a1629e96e6a3 (patch)
tree2e7b9e1cceb586d9d49c13ea89d211ab43a4894a /modules/forum
parentcfe7f8e69f9156284e1daf57921d89de256abda2 (diff)
downloadbrdo-cca8e7e5acf71bc1462ef9197858a1629e96e6a3.tar.gz
brdo-cca8e7e5acf71bc1462ef9197858a1629e96e6a3.tar.bz2
- Patch #744258 by sun: admin/structure/taxonomy paths have to use machine_name(), not vid.
Diffstat (limited to 'modules/forum')
-rw-r--r--modules/forum/forum.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.test b/modules/forum/forum.test
index 377ac76f9..80fe69d2f 100644
--- a/modules/forum/forum.test
+++ b/modules/forum/forum.test
@@ -157,7 +157,7 @@ class ForumTestCase extends DrupalWebTestCase {
);
// Edit the vocabulary.
- $this->drupalPost('admin/structure/taxonomy/' . $vid . '/edit', $edit, t('Save'));
+ $this->drupalPost('admin/structure/taxonomy/' . $original_settings->machine_name . '/edit', $edit, t('Save'));
$this->assertResponse(200);
$this->assertRaw(t('Updated vocabulary %name.', array('%name' => $title)), t('Vocabulary was edited'));