summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2022-03-02 11:01:54 +0100
committerJustus Winter <justus@sequoia-pgp.org>2022-03-02 11:06:29 +0100
commit899bca4923fd4a02c7ff876cad131610adec6682 (patch)
tree8e8a3115c5e5596e1d8d1c75429a8ea4d1d504ee
parent4137a5a873c9365aecd31efadd34643e90b537da (diff)
openpgp: Fix test.
- We cannot assert that an algorithm is supported in tests.
-rw-r--r--openpgp/src/types/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/openpgp/src/types/mod.rs b/openpgp/src/types/mod.rs
index bdadccf7..e87a0e2c 100644
--- a/openpgp/src/types/mod.rs
+++ b/openpgp/src/types/mod.rs
@@ -840,7 +840,6 @@ impl CompressionAlgorithm {
/// use openpgp::types::CompressionAlgorithm;
///
/// assert!(CompressionAlgorithm::Uncompressed.is_supported());
- /// assert!(CompressionAlgorithm::Zip.is_supported());
///
/// assert!(!CompressionAlgorithm::Private(101).is_supported());
/// ```