Don't panic on ErrEmailInvalid
(#19441)
- Don't panic on `ErrEmailInvalid`, this was caused due that we were trying to force `ErrEmailCharIsNotSupported` interface, which panics. - Resolves #19397
This commit is contained in:
parent
1e319ba41a
commit
23d37673bd
2 changed files with 16 additions and 3 deletions
|
@ -69,6 +69,12 @@ func TestAPIAddEmail(t *testing.T) {
|
|||
Primary: false,
|
||||
},
|
||||
}, emails)
|
||||
|
||||
opts = api.CreateEmailOption{
|
||||
Emails: []string{"notAEmail"},
|
||||
}
|
||||
req = NewRequestWithJSON(t, "POST", "/api/v1/user/emails?token="+token, &opts)
|
||||
session.MakeRequest(t, req, http.StatusUnprocessableEntity)
|
||||
}
|
||||
|
||||
func TestAPIDeleteEmail(t *testing.T) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue