1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00

Rename of OrgDto

This commit is contained in:
jrmccannon
2025-03-05 16:21:40 -06:00
parent 53168717fb
commit 56c7cc8bf4
19 changed files with 113 additions and 111 deletions

View File

@ -303,7 +303,7 @@ public class GroupsControllerPutTests
// Arrange repositories
sutProvider.GetDependency<IGroupRepository>().GetManyUserIdsByIdAsync(group.Id).Returns(currentGroupUsers ?? []);
sutProvider.GetDependency<IGroupRepository>().GetByIdWithCollectionsAsync(group.Id)
sutProvider.GetDependency<IGroupRepository>().GetByIdWithCollectionsAsync(group.Id)!
.Returns(new Tuple<Group, ICollection<CollectionAccessSelection>>(group, currentCollectionAccess ?? []));
if (savingUser != null)
{