summaryrefslogtreecommitdiff
path: root/modules/upload/upload.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/upload/upload.test')
-rw-r--r--modules/upload/upload.test8
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'));
}
/**