summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormaluke <devnull@localhost>2009-07-01 15:25:02 +0000
committermaluke <devnull@localhost>2009-07-01 15:25:02 +0000
commit2d1cf7d25adc8cd6ce6a05dfccf00aac1ad18788 (patch)
tree19526289e235721e85f84f6bf695661241b85b95 /tests
parent353e380bca264efa42792832b64d09f43dfa2fb2 (diff)
downloadpaste-2d1cf7d25adc8cd6ce6a05dfccf00aac1ad18788.tar.gz
Paste: fix Ticket #299
Diffstat (limited to 'tests')
-rw-r--r--tests/test_exceptions/test_reporter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_exceptions/test_reporter.py b/tests/test_exceptions/test_reporter.py
index 66f2266..faf3657 100644
--- a/tests/test_exceptions/test_reporter.py
+++ b/tests/test_exceptions/test_reporter.py
@@ -26,7 +26,7 @@ def test_logger():
assert 0
rep.report(exc_data)
content = open(fn).read()
- assert len(content.splitlines()) == 4
+ assert len(content.splitlines()) == 4, len(content.splitlines())
assert 'ValueError' in content
assert 'int' in content
assert 'test_reporter.py' in content