diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-24 17:39:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-24 17:39:35 +0000 |
commit | a24a6c2bba2d15ab835e0b0fce9354bb6fb16c5b (patch) | |
tree | 9194465a044c0fdad447eba2906f0472a4dff515 /modules/dblog | |
parent | a5f42fd007bf3646261b431c52cde53657e21564 (diff) | |
download | brdo-a24a6c2bba2d15ab835e0b0fce9354bb6fb16c5b.tar.gz brdo-a24a6c2bba2d15ab835e0b0fce9354bb6fb16c5b.tar.bz2 |
- Patch #471070 by stella: millions of code style fixes.
Diffstat (limited to 'modules/dblog')
-rw-r--r-- | modules/dblog/dblog.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/dblog/dblog.test b/modules/dblog/dblog.test index 76d10272d..644ae63c7 100644 --- a/modules/dblog/dblog.test +++ b/modules/dblog/dblog.test @@ -197,7 +197,7 @@ class DBLogTestCase extends DrupalWebTestCase { $this->drupalLogout(); // Fetch row ids in watchdog that relate to the user. $result = db_query('SELECT wid FROM {watchdog} WHERE uid = :uid', array(':uid' => $user->uid)); - foreach($result as $row) { + foreach ($result as $row) { $ids[] = $row->wid; } $count_before = (isset($ids)) ? count($ids) : 0; @@ -225,7 +225,7 @@ class DBLogTestCase extends DrupalWebTestCase { unset($ids); // Fetch row ids in watchdog that relate to the user. $result = db_query('SELECT wid FROM {watchdog} WHERE uid = :uid', array(':uid' => $user->uid)); - foreach($result as $row) { + foreach ($result as $row) { $ids[] = $row->wid; } $this->assertTrue(!isset($ids), t('DBLog contains no records for @name', array('@name' => $user->name))); |