summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJonathan Lange <jml@mumak.net>2012-04-26 11:50:58 +0100
committerJonathan Lange <jml@mumak.net>2012-04-26 11:50:58 +0100
commitf42ef2fb24def4c19433e18db492416983c56e32 (patch)
treec2fdda94a2ad7a721bd844036a68dcb057a0f85c /python
parent7510464a5b529fc8ae59f33ebf228466fb13a555 (diff)
downloadsubunit-git-f42ef2fb24def4c19433e18db492416983c56e32.tar.gz
Fix up some XXX comments.
Diffstat (limited to 'python')
-rw-r--r--python/subunit/test_results.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/python/subunit/test_results.py b/python/subunit/test_results.py
index 59477f9..5b23b7e 100644
--- a/python/subunit/test_results.py
+++ b/python/subunit/test_results.py
@@ -341,8 +341,6 @@ class _PredicateFilter(TestResultDecorator, TagsMixin):
self._buffered_calls = []
def filter_predicate(self, test, outcome, error, details):
- # XXX: ExtendedToOriginalDecorator doesn't properly wrap current_tags.
- # https://bugs.launchpad.net/testtools/+bug/978027
return self._predicate(
test, outcome, error, details, self._get_active_tags())
@@ -583,7 +581,8 @@ class TestIdPrintingResult(testtools.TestResult):
class TestByTestResult(testtools.TestResult):
"""Call something every time a test completes."""
-# XXX: Arguably belongs in testtools.
+# XXX: In testtools since lp:testtools r249. Once that's released, just
+# import that.
def __init__(self, on_test):
"""Construct a ``TestByTestResult``.