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 /includes/registry.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 'includes/registry.test')
-rw-r--r-- | includes/registry.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/registry.test b/includes/registry.test index 6f75c4edf..93fea4009 100644 --- a/includes/registry.test +++ b/includes/registry.test @@ -111,7 +111,7 @@ class RegistryParseFilesTestCase extends DrupalWebTestCase { } // Test that we have the right md5. $md5 = db_result(db_query("SELECT md5 FROM {registry_file} WHERE filename = '%s'", './' . $this->$fileType->fileName)); - $this->assertTrue(md5($this->$fileType->contents) == $md5, t('MD5 for "@filename" matched.'.$fileType.$md5, array('@filename' => $this->$fileType->fileName))); + $this->assertTrue(md5($this->$fileType->contents) == $md5, t('MD5 for "@filename" matched.' . $fileType . $md5, array('@filename' => $this->$fileType->fileName))); } } |