We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a979ee commit bf81d71Copy full SHA for bf81d71
test/functional/mock_box/util/chaos_utils.py
@@ -64,7 +64,9 @@ def xml(method):
64
65
def patch(operations):
66
json_patch = jsonpatch.JsonPatch(operations)
67
- patcher = lambda doc: json_patch.apply(doc)
+
68
+ def patcher(doc):
69
+ return json_patch.apply(doc)
70
71
def inner(patched_function):
72
def patched_inner(*args, **kwargs):
0 commit comments