fix backport

This commit is contained in:
Livio Spring 2024-12-18 15:53:39 +01:00
parent 24e5d466be
commit 7830f5cbf5
No known key found for this signature in database
GPG Key ID: 26BB1C2FA5952CF0

View File

@ -113,7 +113,7 @@ func TestServer_AddHumanUser(t *testing.T) {
&user.AddHumanUserRequest{ &user.AddHumanUserRequest{
Organization: &object.Organization{ Organization: &object.Organization{
Org: &object.Organization_OrgDomain{ Org: &object.Organization_OrgDomain{
OrgDomain: Instance.DefaultOrg.PrimaryDomain, OrgDomain: Tester.Organisation.Domain,
}, },
}, },
Profile: &user.SetHumanProfile{ Profile: &user.SetHumanProfile{
@ -143,7 +143,7 @@ func TestServer_AddHumanUser(t *testing.T) {
want: &user.AddHumanUserResponse{ want: &user.AddHumanUserResponse{
Details: &object.Details{ Details: &object.Details{
ChangeDate: timestamppb.Now(), ChangeDate: timestamppb.Now(),
ResourceOwner: Instance.DefaultOrg.Id, ResourceOwner: Tester.Organisation.ID,
}, },
}, },
}, },