diff options
Diffstat (limited to 'tests/openpgp/gpgtar.scm')
-rwxr-xr-x | tests/openpgp/gpgtar.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/openpgp/gpgtar.scm b/tests/openpgp/gpgtar.scm index cd692de84..c88589f5f 100755 --- a/tests/openpgp/gpgtar.scm +++ b/tests/openpgp/gpgtar.scm @@ -43,7 +43,7 @@ (tr:call-with-content (lambda (c) (unless (all (lambda (f) (string-contains? c f)) testfiles) - (error "some file(s) are missing from archive"))))) + (fail "some file(s) are missing from archive"))))) (with-temporary-working-directory (call-check `(,(tool 'gpgtar) --gpg ,(tool 'gpg) --gpg-args ,gpgargs @@ -53,7 +53,7 @@ (for-each (lambda (f) (unless (call-with-input-file f (lambda (x) #t)) - (error (string-append "missing file: " f)))) + (fail (string-append "missing file: " f)))) testfiles)))) (info "Checking gpgtar without encryption") |