summaryrefslogtreecommitdiff
path: root/modules/tracker
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-05-30 07:30:53 +0000
committerDries Buytaert <dries@buytaert.net>2008-05-30 07:30:53 +0000
commitc6c26b5e230b5225ea8a355b6e7a7b31096f7cb3 (patch)
tree18f49ddd773f033ed75eba1fa70dc55de1952f55 /modules/tracker
parentbc5f69a333af204f8e6c6494d85c96b2da1e1c51 (diff)
downloadbrdo-c6c26b5e230b5225ea8a355b6e7a7b31096f7cb3.tar.gz
brdo-c6c26b5e230b5225ea8a355b6e7a7b31096f7cb3.tar.bz2
- Patch #247423 by boombatower: code style fixes for the tests.
Diffstat (limited to 'modules/tracker')
-rw-r--r--modules/tracker/tracker.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/tracker/tracker.test b/modules/tracker/tracker.test
index 3e400de76..85fc6dba5 100644
--- a/modules/tracker/tracker.test
+++ b/modules/tracker/tracker.test
@@ -89,19 +89,19 @@ class TrackerTest extends DrupalWebTestCase {
$node = $this->drupalCreateNode($edit);
$this->drupalGet('tracker');
- $this->assertPattern('/'. $edit['title'] . '.*new/', t('New nodes are flagged as such in the tracker listing.'));
+ $this->assertPattern('/' . $edit['title'] . '.*new/', t('New nodes are flagged as such in the tracker listing.'));
$this->drupalGet('node/' . $node->nid);
$this->drupalGet('tracker');
- $this->assertNoPattern('/'. $edit['title'] . '.*new/', t('Visited nodes are not flagged as new.'));
+ $this->assertNoPattern('/' . $edit['title'] . '.*new/', t('Visited nodes are not flagged as new.'));
$this->drupalLogin($this->other_user);
$this->drupalGet('tracker');
- $this->assertPattern('/'. $edit['title'] . '.*new/', t('For another user, new nodes are flagged as such in the tracker listing.'));
+ $this->assertPattern('/' . $edit['title'] . '.*new/', t('For another user, new nodes are flagged as such in the tracker listing.'));
$this->drupalGet('node/' . $node->nid);
$this->drupalGet('tracker');
- $this->assertNoPattern('/'. $edit['title'] . '.*new/', t('For another user, visited nodes are not flagged as new.'));
+ $this->assertNoPattern('/' . $edit['title'] . '.*new/', t('For another user, visited nodes are not flagged as new.'));
}
/**