diff options
| author | Robert Collins <robertc@robertcollins.net> | 2010-03-12 08:12:10 +1100 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2010-03-12 08:12:10 +1100 |
| commit | 34c1ba82e4290fd68a159599110ee0c1b2702728 (patch) | |
| tree | 33973709e5010a3f33b2d27ac410f2e3f1fd26b8 /python | |
| parent | 7942543cbb28c0cf2831ad337e6d1e595660527a (diff) | |
| download | subunit-git-34c1ba82e4290fd68a159599110ee0c1b2702728.tar.gz | |
Fix incorrect ordering of tags method parameters in TestResultDecorator. This
is purely cosmetic as the parameters are passed down with no interpretation.
(Robert Collins, #537611)
Diffstat (limited to 'python')
| -rw-r--r-- | python/subunit/test_results.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/subunit/test_results.py b/python/subunit/test_results.py index 4ccc2aa..6cf84c5 100644 --- a/python/subunit/test_results.py +++ b/python/subunit/test_results.py @@ -83,8 +83,8 @@ class TestResultDecorator(object): def stop(self): return self.decorated.stop() - def tags(self, gone_tags, new_tags): - return self.decorated.time(gone_tags, new_tags) + def tags(self, new_tags, gone_tags): + return self.decorated.time(new_tags, gone_tags) def time(self, a_datetime): return self.decorated.time(a_datetime) |
