summaryrefslogtreecommitdiffstats
path: root/openpgp/src/policy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/policy.rs')
-rw-r--r--openpgp/src/policy.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/policy.rs b/openpgp/src/policy.rs
index 61467216..7664a913 100644
--- a/openpgp/src/policy.rs
+++ b/openpgp/src/policy.rs
@@ -2898,9 +2898,9 @@ mod test {
let p = &mut P::new();
let t = crate::frozen_time();
- assert_eq!(cert.with_policy(p, t).unwrap().keys().count(), 4);
+ assert_eq!(cert.with_policy(p, t).unwrap().keys().count(), 3);
p.reject_asymmetric_algo(AsymmetricAlgorithm::RSA1024);
- assert_eq!(cert.with_policy(p, t).unwrap().keys().count(), 4);
+ assert_eq!(cert.with_policy(p, t).unwrap().keys().count(), 3);
p.reject_asymmetric_algo(AsymmetricAlgorithm::RSA2048);
assert_eq!(cert.with_policy(p, t).unwrap().keys().count(), 1);
Ok(())