aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2009-06-06 01:05:44 -0400
committerWaylan Limberg <waylan@gmail.com>2009-06-06 01:05:44 -0400
commit0145c9eec7ae2821d6bbec7d6f4a91608734e3cc (patch)
treec83e9f27ffd089810de10a56d52835cb30e8ee0b
parentfb08b0c4718f92144b83ba57e594eca2c61dd93b (diff)
downloadmarkdown-0145c9eec7ae2821d6bbec7d6f4a91608734e3cc.tar.gz
markdown-0145c9eec7ae2821d6bbec7d6f4a91608734e3cc.tar.bz2
markdown-0145c9eec7ae2821d6bbec7d6f4a91608734e3cc.zip
Altered HtmlOutput nose plugin to slow skipped tests.
-rw-r--r--markdown/tests/plugins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/tests/plugins.py b/markdown/tests/plugins.py
index ce06c3f..acd1eaf 100644
--- a/markdown/tests/plugins.py
+++ b/markdown/tests/plugins.py
@@ -75,7 +75,7 @@ or ""))
'errors=%d' % len(result.errors)])
for cls in result.errorClasses.keys():
storage, label, isfail = result.errorClasses[cls]
- if isfail:
+ if len(storage):
self.html.append(' %ss=%d' % (label, len(storage)))
self.html.append(')</span>')
else: