diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/openpgp/issue2419.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/openpgp/issue2419.scm b/tests/openpgp/issue2419.scm index efc42a6ae..1f87d1b76 100755 --- a/tests/openpgp/issue2419.scm +++ b/tests/openpgp/issue2419.scm @@ -23,6 +23,6 @@ (lettmp (onebyte) (dearmor (in-srcdir "samplemsgs/issue2419.asc") onebyte) - (catch (assert (string-contains? *error* "invalid packet")) + (catch (assert (string-contains? (car *error*) "invalid packet")) (call-popen `(,@GPG --list-packets ,onebyte) "") (error "Expected an error but got none"))) |