diff options
author | NIIBE Yutaka <[email protected]> | 2022-02-17 05:17:27 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2022-02-17 05:17:27 +0000 |
commit | f064d972e38863358a2dd53de43acd66572830c2 (patch) | |
tree | 5ffd49d44207276087ac0b49aac0ef88672d6aa9 | |
parent | scd: Use lock_slot for apdu_send_direct. (diff) | |
download | gnupg-f064d972e38863358a2dd53de43acd66572830c2.tar.gz gnupg-f064d972e38863358a2dd53de43acd66572830c2.zip |
tests: Remove a test case with "quiet" option with gpgconf.
* tests/openpgp/gpgconf.scm: Remove "quiet" test.
--
Fixes-commit: 2f2130ff24faf4507fa5949e834c155b4a8e1525
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | tests/openpgp/gpgconf.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/openpgp/gpgconf.scm b/tests/openpgp/gpgconf.scm index a940b4599..16e435d05 100644 --- a/tests/openpgp/gpgconf.scm +++ b/tests/openpgp/gpgconf.scm @@ -37,10 +37,9 @@ (assert (or (not (opt::value)) (string=? "" (opt::value))))))) (progress "."))))) (lambda (name . rest) name) - (list "keyserver" "verbose" "quiet") + (list "keyserver" "verbose") (list (gpg-config 'gpg "keyserver") - (gpg-config 'gpg "verbose") - (gpg-config 'gpg "quiet")) + (gpg-config 'gpg "verbose")) (list (lambda (i) (if (even? i) "hkp://foo.bar" "hkps://bar.baz")) ;; gpgconf: argument for option verbose of type 0 (none) must ;; be positive |