summaryrefslogtreecommitdiffstats
path: root/testsuite/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/common.py')
-rw-r--r--testsuite/common.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/testsuite/common.py b/testsuite/common.py
index 60165585d..cc5a67881 100644
--- a/testsuite/common.py
+++ b/testsuite/common.py
@@ -240,5 +240,15 @@ def patchIf(condition, entity, **kwargs):
functions does not prevent the decorators from being run. """
if condition:
return patch(entity, **kwargs)
- else:
+ elif "new" in kwargs:
+ # new object provided, so no argument is added to the function call
return lambda f: f
+ else:
+ # need to add an argument to the function call
+ def decorator(func):
+ @wraps(func)
+ def inner(*args, **kwargs):
+ args.pop()
+ return func(*args, **kwargs)
+ return inner
+ return decorator