summaryrefslogtreecommitdiff
path: root/modules/simpletest/xml.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/xml.php
parenta96ffc1185146676a05579471fb66d2ef1395284 (diff)
downloadbrdo-bdf980c40b7a3f92dd7ac291699e1435592b1301.tar.gz
brdo-bdf980c40b7a3f92dd7ac291699e1435592b1301.tar.bz2
- Patch by boombatower: fixed code style of simpletests.
Diffstat (limited to 'modules/simpletest/xml.php')
-rw-r--r--modules/simpletest/xml.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/simpletest/xml.php b/modules/simpletest/xml.php
index f3f105618..dcaa7525b 100644
--- a/modules/simpletest/xml.php
+++ b/modules/simpletest/xml.php
@@ -184,8 +184,8 @@ class XmlReporter extends SimpleReporter {
print $this->_getIndent(1);
print "<" . $this->_namespace . "exception>";
$message = 'Unexpected exception of type [' . get_class($exception) .
- '] with message ['. $exception->getMessage() .
- '] in ['. $exception->getFile() .
+ '] with message [' . $exception->getMessage() .
+ '] in [' . $exception->getFile() .
' line ' . $exception->getLine() . ']';
print $this->toParsedXml($message);
print "</" . $this->_namespace . "exception>\n";