diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-05-10 06:55:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-05-10 06:55:09 +0000 |
commit | bdf980c40b7a3f92dd7ac291699e1435592b1301 (patch) | |
tree | c8e373b58ba2136ab286a154b371363e84e03b33 /modules/simpletest/xml.php | |
parent | a96ffc1185146676a05579471fb66d2ef1395284 (diff) | |
download | brdo-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.php | 4 |
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"; |