--- a/test/tests.lisp Wed Dec 02 23:43:41 2020 -0500
+++ b/test/tests.lisp Mon Dec 07 23:17:47 2020 -0500
@@ -596,8 +596,10 @@
(define-test error-on-unknown-slots
(is (string= (json "{'id':1}")
(roundtrip-string 'us-err "{'id':1}")))
- (signals jarl::unknown-json-slot-error (jarl:read 'us-err (json "{'foo':10}")))
- (signals jarl::unknown-json-slot-error (jarl:read 'us-err (json "{'id':1, 'foo': 'bar', 'meow': 'wow'}"))))
+ (signals jarl::unknown-json-slot-error
+ (jarl:read 'us-err (json "{'foo':10}")))
+ (signals jarl::unknown-json-slot-error
+ (jarl:read 'us-err (json "{'id':1, 'foo': 'bar', 'meow': 'wow'}"))))
;;;; Passing Input ------------------------------------------------------------