diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-21 12:00:06 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-21 12:00:06 +0000 |
commit | 4d6924dc006dfa83e8d945f28d5ad48abdc64694 (patch) | |
tree | 97914b30504b13835d1ec4cda7e05c64a60fb7ad /modules/upload/upload.test | |
parent | 1c079c3d321d0314396bcc97ff1b672ab841f99e (diff) | |
download | brdo-4d6924dc006dfa83e8d945f28d5ad48abdc64694.tar.gz brdo-4d6924dc006dfa83e8d945f28d5ad48abdc64694.tar.bz2 |
- Patch #440778 by brianV: coding style fixes and documentation improvements.
Diffstat (limited to 'modules/upload/upload.test')
-rw-r--r-- | modules/upload/upload.test | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/upload/upload.test b/modules/upload/upload.test index ffbfd8680..7c07c516d 100644 --- a/modules/upload/upload.test +++ b/modules/upload/upload.test @@ -1,6 +1,12 @@ <?php // $Id$ +/** + * @file + * This file contains tests for the upload module. + */ + + class UploadTestCase extends DrupalWebTestCase { public static function getInfo() { return array( @@ -125,7 +131,7 @@ class UploadTestCase extends DrupalWebTestCase { // extension. $html_file = $html_files[1]->filepath; $this->uploadFile($node, $html_file); - $this->assertNoRaw(t('The specified file %name could not be uploaded.', array('%name' => basename($html_file))), t('File '. $html_file . ' was allowed to be uploaded')); + $this->assertNoRaw(t('The specified file %name could not be uploaded.', array('%name' => basename($html_file))), t('File ' . $html_file . ' was allowed to be uploaded')); } /** |