diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-13 22:41:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-13 22:41:39 +0000 |
commit | 77936aef4c487e8b3265cb28e72d104004cb1172 (patch) | |
tree | d2dbc969ff08f968f248ccedb39dc846950e3480 /modules/taxonomy/taxonomy.test | |
parent | be36b9205e25595f5e4bf0dba4de33f5f620b33e (diff) | |
download | brdo-77936aef4c487e8b3265cb28e72d104004cb1172.tar.gz brdo-77936aef4c487e8b3265cb28e72d104004cb1172.tar.bz2 |
- Rollback of #225562 -- I think there is still something wrong.
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 8d6a2c1ba..531d94812 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 {taxonomy_term_node} WHERE nid = :nid', array(':nid' => $node->nid))->fetch(); + $result = db_query('SELECT * FROM {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.')); } |