summaryrefslogtreecommitdiff
path: root/tests/base64-error.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/base64-error.scm')
-rw-r--r--tests/base64-error.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/base64-error.scm b/tests/base64-error.scm
index 21ef7a6..0d065af 100644
--- a/tests/base64-error.scm
+++ b/tests/base64-error.scm
@@ -27,12 +27,12 @@
(unless
(with-exception-handler
(lambda (error)
- (unless ((record-predicate &not-base64) error)
+ (unless (stubs:invalid-base64-data? error)
(exit 1))
#t)
(lambda ()
(stubs:base64-decode test)
#f)
#:unwind? #t
- #:unwind-for-type &not-base64)
+ #:unwind-for-type stubs:&invalid-base64-data)
(exit 2)))))