diff options
Diffstat (limited to 'tests/openpgp/signencrypt-dsa.test')
-rwxr-xr-x | tests/openpgp/signencrypt-dsa.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/openpgp/signencrypt-dsa.test b/tests/openpgp/signencrypt-dsa.test index dd724c97e..2fb2bb1aa 100755 --- a/tests/openpgp/signencrypt-dsa.test +++ b/tests/openpgp/signencrypt-dsa.test @@ -12,7 +12,7 @@ #info Checking signing and encryption for DSA for i in $plain_files $data_files ; do - $GPG --always-trust -se -o x --yes \ + $GPG ${opt_always} -se -o x --yes \ -u "$dsa_usrname1" -r "$dsa_usrname2" $i $GPG -o y --yes x cmp $i y || error "$i: mismatch" @@ -27,7 +27,7 @@ fi for da in $algos; do for i in $plain_files; do - $GPG --always-trust -se -o x --yes --digest-algo $da \ + $GPG ${opt_always} -se -o x --yes --digest-algo $da \ -u "$dsa_usrname1" -r "$dsa_usrname2" $i $GPG -o y --yes x cmp $i y || error "$i: mismatch" |