From d2647e5cf13b9a65d8f39d08eb52f45e2e29d967 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Fri, 12 Mar 2010 08:12:10 +1100 Subject: 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) --- python/subunit/test_results.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') 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) -- cgit v1.2.1