()
| 64 | |
| 65 | @pytest.fixture |
| 66 | def create_oauth2_password_request_form() -> Callable[ |
| 67 | [str, str], OAuth2PasswordRequestForm |
| 68 | ]: |
| 69 | def _create_oauth2_password_request_form(username, password): |
| 70 | return OAuth2PasswordRequestForm(username=username, password=password, scope="") |
| 71 | |
| 72 | return _create_oauth2_password_request_form |
| 73 | |
| 74 | |
| 75 | @pytest.mark.asyncio |
no outgoing calls
no test coverage detected
searching dependent graphs…