1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

Forgot to remove compliant users from the list. (#5241)

This commit is contained in:
Jared McCannon
2025-01-09 14:13:29 -06:00
committed by GitHub
parent f753829559
commit fd195e7cf3
2 changed files with 12 additions and 5 deletions

View File

@ -336,7 +336,7 @@ public class TwoFactorAuthenticationPolicyValidatorTests
.TwoFactorIsEnabledAsync(Arg.Any<IEnumerable<OrganizationUserUserDetails>>())
.Returns(new List<(OrganizationUserUserDetails user, bool hasTwoFactor)>()
{
(orgUserDetailUserWithout2Fa, true),
(orgUserDetailUserWithout2Fa, false)
});
sutProvider.GetDependency<IRevokeNonCompliantOrganizationUserCommand>()