summaryrefslogtreecommitdiff
path: root/modules/simpletest/drupal_reporter.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/simpletest/drupal_reporter.php')
-rw-r--r--modules/simpletest/drupal_reporter.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/simpletest/drupal_reporter.php b/modules/simpletest/drupal_reporter.php
index 8885dfbe4..7664925f6 100644
--- a/modules/simpletest/drupal_reporter.php
+++ b/modules/simpletest/drupal_reporter.php
@@ -23,7 +23,7 @@ class DrupalReporter extends SimpleReporter {
function DrupalReporter($character_set = 'ISO-8859-1') {
$this->SimpleReporter();
- drupal_add_css(drupal_get_path('module', 'simpletest') .'/simpletest.css');
+ drupal_add_css(drupal_get_path('module', 'simpletest') . '/simpletest.css');
$this->_character_set = $character_set;
}
@@ -226,7 +226,7 @@ class DrupalReporter extends SimpleReporter {
if (!$weight) {
$weight = $this->weight++;
}
- $write['content'.$this->content_count++] = array(
+ $write['content' . $this->content_count++] = array(
'#value' => '<div class=' . $class .'>' . $msg . '</div>',
'#weight' => $weight,
);