diff options
Diffstat (limited to 'tests/openpgp/encrypt-dsa.test')
-rwxr-xr-x | tests/openpgp/encrypt-dsa.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/openpgp/encrypt-dsa.test b/tests/openpgp/encrypt-dsa.test index 8ae93d817..7ce670ee0 100755 --- a/tests/openpgp/encrypt-dsa.test +++ b/tests/openpgp/encrypt-dsa.test @@ -12,7 +12,7 @@ #info Checking encryption for i in $plain_files $data_files ; do - $GPG --always-trust -e -o x --yes -r "$dsa_usrname2" $i + $GPG ${opt_always} -e -o x --yes -r "$dsa_usrname2" $i $GPG -o y --yes x cmp $i y || error "$i: mismatch" done @@ -20,7 +20,7 @@ done for ca in `all_cipher_algos` ; do progress "$ca" for i in $plain_files $data_files ; do - $GPG --always-trust --cipher-algo $ca -e \ + $GPG ${opt_always} --cipher-algo $ca -e \ -o x --yes -r "$dsa_usrname2" $i $GPG -o y --yes x cmp $i y || error "$i: mismatch" |