We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec63ad0 commit 76fa99cCopy full SHA for 76fa99c
test/unit/mock_utils.py
@@ -29,6 +29,7 @@ def mock_connection(
29
socket_timeout=None,
30
backoff_policy=DEFAULT_BACKOFF_POLICY,
31
disable_saml_url_check=False,
32
+ platform_detection_timeout=None,
33
):
34
return MagicMock(
35
_login_timeout=login_timeout,
@@ -40,6 +41,8 @@ def mock_connection(
40
41
_backoff_policy=backoff_policy,
42
backoff_policy=backoff_policy,
43
_disable_saml_url_check=disable_saml_url_check,
44
+ _platform_detection_timeout=platform_detection_timeout,
45
+ platform_detection_timeout=platform_detection_timeout,
46
)
47
48
0 commit comments