summaryrefslogtreecommitdiffstats
path: root/openpgp/tests
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-03-09 11:42:45 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-03-09 18:09:50 +0100
commit391a4b92c977cd64dfd131f3e29b0bc8d756d064 (patch)
treeb5b96ff935853cef9ee22e01890c248a791e724e /openpgp/tests
parent58d662c6d37dd1b0dccd4d0ce30290b8ede408e9 (diff)
Switch from failure to anyhow.
- Use the anyhow crate instead of failure to implement the dynamic side of our error handling. anyhow::Error derefs to dyn std::error::Error, allowing better interoperability with other stdlib-based error handling libraries. - Fixes #444.
Diffstat (limited to 'openpgp/tests')
-rw-r--r--openpgp/tests/for-each-artifact.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/tests/for-each-artifact.rs b/openpgp/tests/for-each-artifact.rs
index 3a1c8fb4..a5327433 100644
--- a/openpgp/tests/for-each-artifact.rs
+++ b/openpgp/tests/for-each-artifact.rs
@@ -18,12 +18,12 @@ mod for_each_artifact {
(p as &Marshal).serialize(&mut v)?;
let q = openpgp::Packet::from_bytes(&v)?;
if p != &q {
- return Err(failure::format_err!(
+ return Err(anyhow::anyhow!(
"assertion failed: p == q\np = {:?}\nq = {:?}", p, q));
}
let w = (p as &MarshalInto).to_vec()?;
if v != w {
- return Err(failure::format_err!(
+ return Err(anyhow::anyhow!(
"assertion failed: v == w\nv = {:?}\nw = {:?}", v, w));
}
Ok(())