1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-21 12:05:42 +01:00

Remove Unneeded Changes

This commit is contained in:
Justin Baur 2024-11-20 09:38:03 -05:00
parent 0f2d51edc4
commit 525f1cd971
No known key found for this signature in database

View File

@ -118,7 +118,7 @@ public class MembersControllerTests : IClassFixture<ApiApplicationFactory>, IAsy
Type = OrganizationUserType.Custom,
ExternalId = "myCustomUser",
Collections = [],
Groups = [],
Groups = []
};
var response = await _client.PostAsync("/public/members", JsonContent.Create(request));
@ -161,7 +161,7 @@ public class MembersControllerTests : IClassFixture<ApiApplicationFactory>, IAsy
AccessEventLogs = true
},
ExternalId = "example",
Collections = [],
Collections = []
};
var response = await _client.PutAsync($"/public/members/{orgUser.Id}", JsonContent.Create(request));
@ -204,7 +204,7 @@ public class MembersControllerTests : IClassFixture<ApiApplicationFactory>, IAsy
{
Type = OrganizationUserType.Custom,
ExternalId = "example",
Collections = [],
Collections = []
};
var response = await _client.PutAsync($"/public/members/{orgUser.Id}", JsonContent.Create(request));