Add missing test case and fix typo in tests (#24915)
This PR adds a missing assertion in the `TestGetOrgUsersByOrgID` function. It also incidentally fixes a small typo.
This commit is contained in:
parent
2250ddd112
commit
63d5e762d8
2 changed files with 8 additions and 2 deletions
|
@ -265,6 +265,12 @@ func TestGetOrgUsersByOrgID(t *testing.T) {
|
|||
UID: 4,
|
||||
IsPublic: false,
|
||||
}, *orgUsers[1])
|
||||
assert.Equal(t, organization.OrgUser{
|
||||
ID: orgUsers[2].ID,
|
||||
OrgID: 3,
|
||||
UID: 28,
|
||||
IsPublic: true,
|
||||
}, *orgUsers[2])
|
||||
}
|
||||
|
||||
orgUsers, err = organization.GetOrgUsersByOrgID(db.DefaultContext, &organization.FindOrgMembersOpts{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue