From 7830f5cbf54f5471ca0d08eff3274761965a6c2c Mon Sep 17 00:00:00 2001 From: Livio Spring Date: Wed, 18 Dec 2024 15:53:39 +0100 Subject: [PATCH] fix backport --- internal/api/grpc/user/v2/user_integration_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/api/grpc/user/v2/user_integration_test.go b/internal/api/grpc/user/v2/user_integration_test.go index 25c58cca28..358d6ef47c 100644 --- a/internal/api/grpc/user/v2/user_integration_test.go +++ b/internal/api/grpc/user/v2/user_integration_test.go @@ -113,7 +113,7 @@ func TestServer_AddHumanUser(t *testing.T) { &user.AddHumanUserRequest{ Organization: &object.Organization{ Org: &object.Organization_OrgDomain{ - OrgDomain: Instance.DefaultOrg.PrimaryDomain, + OrgDomain: Tester.Organisation.Domain, }, }, Profile: &user.SetHumanProfile{ @@ -143,7 +143,7 @@ func TestServer_AddHumanUser(t *testing.T) { want: &user.AddHumanUserResponse{ Details: &object.Details{ ChangeDate: timestamppb.Now(), - ResourceOwner: Instance.DefaultOrg.Id, + ResourceOwner: Tester.Organisation.ID, }, }, },