summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc')
-rw-r--r--ipc/tests/gpg-agent.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/tests/gpg-agent.rs b/ipc/tests/gpg-agent.rs
index 5124a62e..98b40255 100644
--- a/ipc/tests/gpg-agent.rs
+++ b/ipc/tests/gpg-agent.rs
@@ -75,7 +75,7 @@ fn gpg_import(ctx: &Context, what: &[u8]) {
.expect("failed to start gpg");
gpg.stdin.as_mut().unwrap().write_all(what).unwrap();
let status = gpg.wait().unwrap();
- assert!(status.success());
+ assert!(status.success(), "gpg --import failed");
}
#[test]