summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/trust.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/packet/trust.rs')
-rw-r--r--openpgp/src/packet/trust.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/packet/trust.rs b/openpgp/src/packet/trust.rs
index af876131..08ab6fe8 100644
--- a/openpgp/src/packet/trust.rs
+++ b/openpgp/src/packet/trust.rs
@@ -1,6 +1,6 @@
use std::fmt;
-#[cfg(any(test, feature = "quickcheck"))]
+#[cfg(test)]
use quickcheck::{Arbitrary, Gen};
use crate::packet;
@@ -60,7 +60,7 @@ impl From<Trust> for Packet {
}
}
-#[cfg(any(test, feature = "quickcheck"))]
+#[cfg(test)]
impl Arbitrary for Trust {
fn arbitrary<G: Gen>(g: &mut G) -> Self {
Vec::<u8>::arbitrary(g).into()