We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c07d96b commit a4dd7f0Copy full SHA for a4dd7f0
tests/system/core/wrappers/server.py
@@ -130,13 +130,13 @@ def log_in(
130
self,
131
username: str,
132
password: str,
133
- authentication_method_id="internal",
+ authentication_method_id: str = "internal",
134
suppress_client_side_validation: bool = False,
135
) -> User:
136
"""
137
Logs in a user. Returns the user info.
138
It accepts a flag to suppress client-side validation. It is useful when
139
- testing sending maliciously payloads.
+ testing malicious payloads.
140
141
api_instance = UsersApi(self._api_client)
142
create_session_method = api_instance.create_session_with_http_info
0 commit comments