summaryrefslogtreecommitdiff
path: root/lib/subunit/python/subunit/test_results.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/subunit/python/subunit/test_results.py')
-rw-r--r--lib/subunit/python/subunit/test_results.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/subunit/python/subunit/test_results.py b/lib/subunit/python/subunit/test_results.py
index 4ccc2aab35..6cf84c519e 100644
--- a/lib/subunit/python/subunit/test_results.py
+++ b/lib/subunit/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)