(oauth_account3: OAuthAccountModel)
| 178 | |
| 179 | @pytest.fixture |
| 180 | def inactive_user_oauth(oauth_account3: OAuthAccountModel) -> UserOAuthModel: |
| 181 | return UserOAuthModel( |
| 182 | email="percival@camelot.bt", |
| 183 | hashed_password=angharad_password_hash, |
| 184 | is_active=False, |
| 185 | oauth_accounts=[oauth_account3], |
| 186 | ) |
| 187 | |
| 188 | |
| 189 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…