summaryrefslogtreecommitdiffstats
path: root/contrib/python/pytest-mock/py3/pytest_mock/_util.py
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2025-10-01 20:51:25 +0300
committerrobot-piglet <[email protected]>2025-10-01 21:04:10 +0300
commit594e8c2a0fdf288b605a334c78d424f3ef24369d (patch)
tree8c00d1409c057c76f262b13c1f1b2ff910a32a82 /contrib/python/pytest-mock/py3/pytest_mock/_util.py
parent37cb3db9406ee2445a4a0d0cfb417da82347f9ae (diff)
Intermediate changes
commit_hash:f8824dd4709e9607499ae3cf7558efe1150fff92
Diffstat (limited to 'contrib/python/pytest-mock/py3/pytest_mock/_util.py')
-rw-r--r--contrib/python/pytest-mock/py3/pytest_mock/_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/pytest-mock/py3/pytest_mock/_util.py b/contrib/python/pytest-mock/py3/pytest_mock/_util.py
index ad830caeefa..d3a732ac278 100644
--- a/contrib/python/pytest-mock/py3/pytest_mock/_util.py
+++ b/contrib/python/pytest-mock/py3/pytest_mock/_util.py
@@ -15,7 +15,7 @@ def get_mock_module(config):
config.getini("mock_use_standalone_module")
)
if use_standalone_module:
- from unittest import mock
+ import mock
_mock_module = mock
else: