mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-21 08:31:27 -05:00
chore(lint): Fix bug when a token is given public only
This commit is contained in:
parent
9b63e3e88d
commit
14d85597f8
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ func TestAPIUserSearchLoggedIn(t *testing.T) {
|
|||
for _, user := range results.Data {
|
||||
assert.Contains(t, user.UserName, query)
|
||||
assert.NotEmpty(t, user.Email)
|
||||
assert.True(t, user.Visibility == "public")
|
||||
assert.Equal(t, "public", user.Visibility)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue