summaryrefslogtreecommitdiffstats
path: root/openpgp/src/constants.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/constants.rs')
-rw-r--r--openpgp/src/constants.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/constants.rs b/openpgp/src/constants.rs
index b3e3c265..a7a0501c 100644
--- a/openpgp/src/constants.rs
+++ b/openpgp/src/constants.rs
@@ -1160,14 +1160,14 @@ mod tests {
quickcheck! {
- fn sigtype_roundtrip(t: SignatureType) -> bool {
+ fn signature_type_roundtrip(t: SignatureType) -> bool {
let val: u8 = t.clone().into();
t == SignatureType::from(val)
}
}
quickcheck! {
- fn sigtype_display(t: SignatureType) -> bool {
+ fn signature_type_display(t: SignatureType) -> bool {
let s = format!("{}", t);
!s.is_empty()
}