summaryrefslogtreecommitdiffstats
path: root/sqv/tests/not-before-after.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-11-26 22:39:31 +0100
committerJustus Winter <justus@sequoia-pgp.org>2018-11-26 23:18:45 +0100
commitb08498fae6c3bd87fd3c2b3bcadac0dd10d3d351 (patch)
treef49cea933f4fcd2440a756edf1ae2899a0d498f4 /sqv/tests/not-before-after.rs
parent8c096d156df3862240e7dfdb560974ddb8064aa1 (diff)
sqv: Fix tests.
- Fixes 64addd3eaa0c6902928b2eaab1db20b6c2ec8fa2, which removes the short alias for --keyring.
Diffstat (limited to 'sqv/tests/not-before-after.rs')
-rw-r--r--sqv/tests/not-before-after.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/sqv/tests/not-before-after.rs b/sqv/tests/not-before-after.rs
index 5be41bf0..1bae9d06 100644
--- a/sqv/tests/not-before-after.rs
+++ b/sqv/tests/not-before-after.rs
@@ -12,7 +12,7 @@ mod integration {
fn unconstrained() {
Assert::cargo_binary("sqv")
.with_args(
- &["-r",
+ &["--keyring",
&p("keys/emmelie-dorothea-dina-samantha-awina-ed25519.pgp"),
&p("messages/a-cypherpunks-manifesto.txt.ed25519.sig"),
&p("messages/a-cypherpunks-manifesto.txt")])
@@ -24,7 +24,7 @@ mod integration {
fn in_interval() {
Assert::cargo_binary("sqv")
.with_args(
- &["-r",
+ &["--keyring",
&p("keys/emmelie-dorothea-dina-samantha-awina-ed25519.pgp"),
"--not-before", "2018-08-14",
"--not-after", "2018-08-15",
@@ -38,7 +38,7 @@ mod integration {
fn before() {
Assert::cargo_binary("sqv")
.with_args(
- &["-r",
+ &["--keyring",
&p("keys/emmelie-dorothea-dina-samantha-awina-ed25519.pgp"),
"--not-before", "2018-08-15",
&p("messages/a-cypherpunks-manifesto.txt.ed25519.sig"),
@@ -51,7 +51,7 @@ mod integration {
fn after() {
Assert::cargo_binary("sqv")
.with_args(
- &["-r",
+ &["--keyring",
&p("keys/emmelie-dorothea-dina-samantha-awina-ed25519.pgp"),
"--not-after", "2018-08-14",
&p("messages/a-cypherpunks-manifesto.txt.ed25519.sig"),