From 4f092252de3dbb806aae53e7d34de5d397266259 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Wed, 1 Mar 2023 14:24:55 +0100 Subject: openpgp: Don't assert that ElGamal is not supported in test. --- openpgp/src/types/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/openpgp/src/types/mod.rs b/openpgp/src/types/mod.rs index 50459a16..863880e5 100644 --- a/openpgp/src/types/mod.rs +++ b/openpgp/src/types/mod.rs @@ -204,7 +204,6 @@ impl PublicKeyAlgorithm { /// /// assert!(PublicKeyAlgorithm::EdDSA.is_supported()); /// assert!(PublicKeyAlgorithm::RSAEncryptSign.is_supported()); - /// assert!(!PublicKeyAlgorithm::ElGamalEncrypt.is_supported()); /// assert!(!PublicKeyAlgorithm::Private(101).is_supported()); /// ``` pub fn is_supported(&self) -> bool { -- cgit v1.2.3