mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-14 22:59:29 +01:00
Add support for searching users by email (#30908) (testifylint)
This commit is contained in:
parent
122baf4de8
commit
1bee6fa839
1 changed files with 2 additions and 2 deletions
|
@ -145,7 +145,7 @@ func TestAPIUserSearchByEmail(t *testing.T) {
|
|||
|
||||
var results SearchResults
|
||||
DecodeJSON(t, resp, &results)
|
||||
assert.Equal(t, 1, len(results.Data))
|
||||
assert.Len(t, results.Data, 1)
|
||||
assert.Equal(t, query, results.Data[0].Email)
|
||||
|
||||
// no login user can not search user with private email
|
||||
|
@ -163,6 +163,6 @@ func TestAPIUserSearchByEmail(t *testing.T) {
|
|||
resp = MakeRequest(t, req, http.StatusOK)
|
||||
|
||||
DecodeJSON(t, resp, &results)
|
||||
assert.Equal(t, 1, len(results.Data))
|
||||
assert.Len(t, results.Data, 1)
|
||||
assert.Equal(t, query, results.Data[0].Email)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue