diff --git a/crates/sargon/src/profile/mfa/security_structures/security_shield_builder.rs b/crates/sargon/src/profile/mfa/security_structures/security_shield_builder.rs index a5994ef09..8f367a6ca 100644 --- a/crates/sargon/src/profile/mfa/security_structures/security_shield_builder.rs +++ b/crates/sargon/src/profile/mfa/security_structures/security_shield_builder.rs @@ -1047,20 +1047,6 @@ mod tests { SelectedFactorSourcesForRoleStatus::Suboptimal ); } - - #[test] - fn lenient() { - // ARRANGE - let sut = SUT::lenient(); - sut.add_factor_source_to_primary_threshold( - FactorSourceID::sample_device(), - ); - - // ACT - sut.add_factor_source_to_primary_threshold( - FactorSourceID::sample_device(), // two Device FS should be allowed when lenient - ); - } } #[cfg(test)]