We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b03b4fb commit 63626d9Copy full SHA for 63626d9
tests/thirdpartyemailpassword/test_email_delivery.py
@@ -1148,13 +1148,6 @@ async def send_email(
1148
assert rid_info is not None and "rid=thirdpartyemailpassword" in rid_info
1149
assert tenant_info is not None and "tenantId=public" in tenant_info
1150
1151
- link = await send_reset_password_email("public", "invalidUserId")
1152
- assert isinstance(link, SendResetPasswordEmailUnknownUserIdError)
1153
-
1154
- with raises(GeneralError) as err:
1155
- await send_reset_password_email("invalidTenantId", user_info["id"])
1156
- assert "status code: 400" in str(err.value)
1157
1158
1159
@mark.asyncio
1160
async def test_send_reset_password_email_invalid_input(
0 commit comments