diff options
| author | Robert Collins <robertc@robertcollins.net> | 2012-05-02 23:04:11 +1200 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2012-05-02 23:04:11 +1200 |
| commit | 09a69c5bc1ef7daafb2b167c43092bf94dc0dee6 (patch) | |
| tree | c43a3cb6548df891c7e304c6cc41d3ae9cb8d0e0 /python/subunit/test_results.py | |
| parent | 33b73acea72a1799f42f3fabf2034abf2d114964 (diff) | |
| download | subunit-git-09a69c5bc1ef7daafb2b167c43092bf94dc0dee6.tar.gz | |
Restore forwarding of all time calls through TestResultFilter.
Diffstat (limited to 'python/subunit/test_results.py')
| -rw-r--r-- | python/subunit/test_results.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/python/subunit/test_results.py b/python/subunit/test_results.py index bb67df0..1b14c5f 100644 --- a/python/subunit/test_results.py +++ b/python/subunit/test_results.py @@ -420,10 +420,7 @@ class _PredicateFilter(TestResultDecorator, TagsMixin): return super(_PredicateFilter, self).tags(new_tags, gone_tags) def time(self, a_time): - if self._current_test is not None: - self._buffered_calls.append(('time', [a_time], {})) - else: - return self.decorated.time(a_time) + return self.decorated.time(a_time) def id_to_orig_id(self, id): if id.startswith("subunit.RemotedTestCase."): |
