summaryrefslogtreecommitdiffstats
path: root/openpgp/tests
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-04-09 16:42:59 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-04-09 18:18:30 +0200
commit2e1eec5fe4157a391a13554ff7df3075cfe043cc (patch)
tree03ac579ba58d27c08a7ac16ca16f687d1a9456ed /openpgp/tests
parentc1516c59709fa47d13100daddb57657008a793c3 (diff)
openpgp: Make PacketParserResult a std::result::Result.
- This avoids the partial implementation imitating std::option::Option, replacing it with std::result::Result. - As a benefit, std::result::Result is in the prelude, simplifying a lot of parsing loops.
Diffstat (limited to 'openpgp/tests')
-rw-r--r--openpgp/tests/for-each-artifact.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/tests/for-each-artifact.rs b/openpgp/tests/for-each-artifact.rs
index b45364ea..757b1c79 100644
--- a/openpgp/tests/for-each-artifact.rs
+++ b/openpgp/tests/for-each-artifact.rs
@@ -177,7 +177,7 @@ fn for_all_packets<F>(src: &Path, mut fun: F) -> openpgp::Result<()>
return Ok(());
};
- while let PacketParserResult::Some(pp) = ppr {
+ while let Ok(pp) = ppr {
match pp.recurse() {
Ok((packet, ppr_)) => {
ppr = ppr_;