summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2010-03-12 08:12:10 +1100
committerRobert Collins <robertc@robertcollins.net>2010-03-12 08:12:10 +1100
commit34c1ba82e4290fd68a159599110ee0c1b2702728 (patch)
tree33973709e5010a3f33b2d27ac410f2e3f1fd26b8 /python
parent7942543cbb28c0cf2831ad337e6d1e595660527a (diff)
downloadsubunit-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.py4
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)