diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-13 22:25:13 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-13 22:25:13 +0000 |
commit | b86354c55c28f88b9bbd426d8faf405246148ee4 (patch) | |
tree | b9c2f224dfd4be3b3108be016333b5c446467092 /modules/taxonomy/taxonomy.test | |
parent | b986cc556d3eb30afd95d996cbfbe92a7537411f (diff) | |
download | brdo-b86354c55c28f88b9bbd426d8faf405246148ee4.tar.gz brdo-b86354c55c28f88b9bbd426d8faf405246148ee4.tar.bz2 |
- Patch #225562 by Jody Lynn: change DB table names from eg. term_data to taxonomy_term_data.
Diffstat (limited to 'modules/taxonomy/taxonomy.test')
-rw-r--r-- | modules/taxonomy/taxonomy.test | 2 |
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.')); } |