summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/signature/subpacket.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/packet/signature/subpacket.rs')
-rw-r--r--openpgp/src/packet/signature/subpacket.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/packet/signature/subpacket.rs b/openpgp/src/packet/signature/subpacket.rs
index edac6b72..0510acc3 100644
--- a/openpgp/src/packet/signature/subpacket.rs
+++ b/openpgp/src/packet/signature/subpacket.rs
@@ -2358,7 +2358,7 @@ impl SubpacketAreas {
///
/// assert!(sig.key_alive(pk, None).is_ok());
/// // A key is not considered alive prior to its creation time.
- /// let the_past = SystemTime::now() - Duration::new(10, 0);
+ /// let the_past = SystemTime::now() - Duration::new(300, 0);
/// assert!(sig.key_alive(pk, the_past).is_err());
/// # Ok(()) }
/// ```