diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/subunit/test_results.py | 5 |
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``. |
