summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.test
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-01-14 21:16:21 +0000
committerDries Buytaert <dries@buytaert.net>2009-01-14 21:16:21 +0000
commitd3df2ff356b0b5802e406de32bbe8727af3128b5 (patch)
treedb6df37d436e550f8523c21beda5c2b0f6bd251c /modules/taxonomy/taxonomy.test
parent534287b1bc054a4141855ce472d3c400af7d6784 (diff)
downloadbrdo-d3df2ff356b0b5802e406de32bbe8727af3128b5.tar.gz
brdo-d3df2ff356b0b5802e406de32bbe8727af3128b5.tar.bz2
- Patch #225562 by Jody Lynn et al: clean up of the taxonomy module SQL table namespace.
Diffstat (limited to 'modules/taxonomy/taxonomy.test')
-rw-r--r--modules/taxonomy/taxonomy.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.test b/modules/taxonomy/taxonomy.test
index 531d94812..8d6a2c1ba 100644
--- a/modules/taxonomy/taxonomy.test
+++ b/modules/taxonomy/taxonomy.test
@@ -360,7 +360,7 @@ class TaxonomyTermTestCase extends TaxonomyWebTestCase {
$this->drupalGet('node/' . $node->nid);
$this->assertNoText($term2->name, t('Checking if node exists'));
// Checking database fields.
- $result = db_query('SELECT * FROM {term_node} WHERE nid = :nid', array(':nid' => $node->nid))->fetch();
+ $result = db_query('SELECT * FROM {taxonomy_term_node} WHERE nid = :nid', array(':nid' => $node->nid))->fetch();
$this->assertTrue(empty($result), t('Term/node relationships are no longer in the database table.'));
}