summaryrefslogtreecommitdiff
path: root/lib/subunit/python/subunit/test_results.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-03-29 16:25:03 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-03-29 18:05:29 +0200
commit082e7f20d7df457c08119eb41fc2f3f8c09ba7ab (patch)
tree67ad06fcc3125f3091accdc622c6d5c16515addd /lib/subunit/python/subunit/test_results.py
parentc87332950043471e52b924f7498b63982ec4302c (diff)
downloadsamba-082e7f20d7df457c08119eb41fc2f3f8c09ba7ab.tar.gz
samba-082e7f20d7df457c08119eb41fc2f3f8c09ba7ab.tar.bz2
samba-082e7f20d7df457c08119eb41fc2f3f8c09ba7ab.zip
subunit: Update to newer upstream version.
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)