# HG changeset patch # User Steve Losh # Date 1607401067 18000 # Node ID 693b1dfe357aee4f61103a86eb433b463fcd752a # Parent 558d809397bd46dd9b776193f30a4d39d7e9d266 Whitespace diff -r 558d809397bd -r 693b1dfe357a test/tests.lisp --- 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 ------------------------------------------------------------