summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.test
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-01 01:37:13 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-01 01:37:13 +0000
commit823c0a0a55604429874702d64a85363099224aa1 (patch)
treeb841172c3b29203bf19a039f4493e38084b5a807 /modules/taxonomy/taxonomy.test
parent6d2573e2013655c57ff995e52cd7f267fa4a3a7f (diff)
downloadbrdo-823c0a0a55604429874702d64a85363099224aa1.tar.gz
brdo-823c0a0a55604429874702d64a85363099224aa1.tar.bz2
#881530 by yhahn: Fix exportability of vocabularies by using machine names in taxonomy field's 'allowed values' setting.
Diffstat (limited to 'modules/taxonomy/taxonomy.test')
-rw-r--r--modules/taxonomy/taxonomy.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/taxonomy/taxonomy.test b/modules/taxonomy/taxonomy.test
index 9edc6c70f..766e1832f 100644
--- a/modules/taxonomy/taxonomy.test
+++ b/modules/taxonomy/taxonomy.test
@@ -379,7 +379,7 @@ class TaxonomyTermTestCase extends TaxonomyWebTestCase {
'settings' => array(
'allowed_values' => array(
array(
- 'vid' => $this->vocabulary->vid,
+ 'vocabulary' => $this->vocabulary->machine_name,
'parent' => 0,
),
),
@@ -845,7 +845,7 @@ class TaxonomyTermFieldTestCase extends TaxonomyWebTestCase {
'settings' => array(
'allowed_values' => array(
array(
- 'vid' => $this->vocabulary->vid,
+ 'vocabulary' => $this->vocabulary->machine_name,
'parent' => '0',
),
),
@@ -905,7 +905,7 @@ class TaxonomyTermFieldTestCase extends TaxonomyWebTestCase {
'settings' => array(
'allowed_values' => array(
array(
- 'vid' => $this->vocabulary->vid,
+ 'vocabulary' => $this->vocabulary->machine_name,
'parent' => '0',
),
),
@@ -981,7 +981,7 @@ class TaxonomyTokenReplaceTestCase extends TaxonomyWebTestCase {
'settings' => array(
'allowed_values' => array(
array(
- 'vid' => $this->vocabulary->vid,
+ 'vocabulary' => $this->vocabulary->machine_name,
'parent' => 0,
),
),