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.
2 parents 18766d1 + bf81d71 commit cfe1acbCopy full SHA for cfe1acb
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