diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-05-30 07:30:53 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-05-30 07:30:53 +0000 |
commit | c6c26b5e230b5225ea8a355b6e7a7b31096f7cb3 (patch) | |
tree | 18f49ddd773f033ed75eba1fa70dc55de1952f55 /modules/taxonomy/taxonomy.test | |
parent | bc5f69a333af204f8e6c6494d85c96b2da1e1c51 (diff) | |
download | brdo-c6c26b5e230b5225ea8a355b6e7a7b31096f7cb3.tar.gz brdo-c6c26b5e230b5225ea8a355b6e7a7b31096f7cb3.tar.bz2 |
- Patch #247423 by boombatower: code style fixes for the tests.
Diffstat (limited to 'modules/taxonomy/taxonomy.test')
-rw-r--r-- | modules/taxonomy/taxonomy.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/taxonomy/taxonomy.test b/modules/taxonomy/taxonomy.test index 65314b5e8..82b3fd46e 100644 --- a/modules/taxonomy/taxonomy.test +++ b/modules/taxonomy/taxonomy.test @@ -358,7 +358,7 @@ class TaxonomyTestNodeApiTestCase extends DrupalWebTestCase { $edit = array('title' => $title, 'body' => $body, "taxonomy[$vid][]" => $parent); - $this->drupalPost('node/'. $node->nid .'/edit', $edit, t('Save')); + $this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save')); // TODO Do a MUCH better check here of the information msg. $patternArray['information message'] = 'been updated'; @@ -374,9 +374,9 @@ class TaxonomyTestNodeApiTestCase extends DrupalWebTestCase { } // Delete node through browser. - $this->drupalPost('node/'. $node->nid .'/delete', array(), t('Delete')); + $this->drupalPost('node/' . $node->nid . '/delete', array(), t('Delete')); // Checking after delete. - $this->drupalGet("node/".$node->nid); + $this->drupalGet("node/" . $node->nid); $this->assertNoText($termname, t('Checking if node exists')); // Checking database fields. $num_rows = db_result(db_query('SELECT COUNT(*) FROM {term_node} WHERE nid = %d', $node->nid)); |