From 64e60dac202e4767057b09920f77ec73dfb320ba Mon Sep 17 00:00:00 2001 From: Maciej Katafiasz Date: Tue, 24 Nov 2020 15:58:45 -0800 Subject: [PATCH] Fix singleresult not passing keywords through --- testrail/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testrail/helper.py b/testrail/helper.py index 09366bd..5d7c4c4 100644 --- a/testrail/helper.py +++ b/testrail/helper.py @@ -51,7 +51,7 @@ def testrail_duration_to_timedelta(duration): def singleresult(func): def func_wrapper(*args, **kw): - items = func(*args) + items = func(*args, **kw) if hasattr(items, '__iter__'): items = list(items) if len(items) > 1: