1
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-04-08 17:05:45 +02:00
This commit is contained in:
techknowlogick 2025-01-15 22:56:05 -05:00
parent 789b73bd55
commit f5c6a31fc2

@ -57,5 +57,5 @@ func TestGetBadgeUsers(t *testing.T) {
users, count, err = user_model.GetBadgeUsers(db.DefaultContext, opts)
assert.NoError(t, err)
assert.EqualValues(t, 0, count)
assert.Len(t, users, 0)
assert.Empty(t, users)
}