diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/openpgp/version.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/openpgp/version.scm b/tests/openpgp/version.scm index dbcb484e8..57efb937b 100755 --- a/tests/openpgp/version.scm +++ b/tests/openpgp/version.scm @@ -20,6 +20,5 @@ (load (with-path "defs.scm")) (info "Printing the GPG version") -(assert (= 0 (call `(,@GPG --version)))) - -;; fixme: check that the output is as expected +(assert (string-contains? (call-check `(,@GPG --version)) + "gpg (GnuPG) 2.")) |