diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/run.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run.scm b/test/run.scm index d0b0e27..38d28de 100644 --- a/test/run.scm +++ b/test/run.scm @@ -168,7 +168,7 @@ (test-equal "record mutator should mutate the record instance" 3 (let ((p (point 1 2))) - (point-set-y! p 3) + (set! p (point-set-y! p 3)) (point->y p))) (test-assert "should be able to mutate mutable record fields using json-object-set!" |