summaryrefslogtreecommitdiff
path: root/python/subunit/test_results.py
diff options
context:
space:
mode:
authorJonathan Lange <jml@mumak.net>2012-04-20 10:57:47 +0100
committerJonathan Lange <jml@mumak.net>2012-04-20 10:57:47 +0100
commit59b5ed77506b2ca196b9a454fc032e5897f1ca37 (patch)
treef6b04299bf11a3773065a0c7a659d5b1f301f7ed /python/subunit/test_results.py
parenta34add828e0891ea2309141e1358bdbf3ba3fbf4 (diff)
downloadsubunit-git-59b5ed77506b2ca196b9a454fc032e5897f1ca37.tar.gz
Properly scope tag collapsing
Diffstat (limited to 'python/subunit/test_results.py')
-rw-r--r--python/subunit/test_results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/test_results.py b/python/subunit/test_results.py
index dec168d..1988346 100644
--- a/python/subunit/test_results.py
+++ b/python/subunit/test_results.py
@@ -228,7 +228,7 @@ class TagCollapsingDecorator(HookedTestResultDecorator):
def stopTest(self, test):
super(TagCollapsingDecorator, self).stopTest(test)
- self._current_test_tags = set(), set()
+ self._current_test_tags = None
def _before_event(self):
if not self._current_test_tags: