summaryrefslogtreecommitdiff
path: root/modules/simpletest/drupal_reporter.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-05-10 06:55:09 +0000
committerDries Buytaert <dries@buytaert.net>2008-05-10 06:55:09 +0000
commitbdf980c40b7a3f92dd7ac291699e1435592b1301 (patch)
treec8e373b58ba2136ab286a154b371363e84e03b33 /modules/simpletest/drupal_reporter.php
parenta96ffc1185146676a05579471fb66d2ef1395284 (diff)
downloadbrdo-bdf980c40b7a3f92dd7ac291699e1435592b1301.tar.gz
brdo-bdf980c40b7a3f92dd7ac291699e1435592b1301.tar.bz2
- Patch by boombatower: fixed code style of simpletests.
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,
);