diff options
author | Waylan Limberg <waylan@gmail.com> | 2009-06-06 01:05:44 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2009-06-06 01:05:44 -0400 |
commit | 0145c9eec7ae2821d6bbec7d6f4a91608734e3cc (patch) | |
tree | c83e9f27ffd089810de10a56d52835cb30e8ee0b | |
parent | fb08b0c4718f92144b83ba57e594eca2c61dd93b (diff) | |
download | markdown-0145c9eec7ae2821d6bbec7d6f4a91608734e3cc.tar.gz markdown-0145c9eec7ae2821d6bbec7d6f4a91608734e3cc.tar.bz2 markdown-0145c9eec7ae2821d6bbec7d6f4a91608734e3cc.zip |
Altered HtmlOutput nose plugin to slow skipped tests.
-rw-r--r-- | markdown/tests/plugins.py | 2 |
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: |