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 803732d commit 5451ba9Copy full SHA for 5451ba9
tools/azure-devtools/src/azure_devtools/scenario_tests/preparers.py
@@ -172,7 +172,7 @@ def _preparer_wrapper(test_class_instance, **kwargs):
172
# Inform the next step in the chain (our parent) that we're cached.
173
if self._use_cache or getattr(fn, "__use_cache", False):
174
setattr(_preparer_wrapper, "__use_cache", True)
175
- functools.wraps(_preparer_wrapper, fn)
+ functools.update_wrapper(_preparer_wrapper, fn)
176
return _preparer_wrapper
177
178
@contextlib.contextmanager
0 commit comments