diff options
author | Eduardo Julian | 2021-09-08 22:24:08 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-08 22:24:08 -0400 |
commit | 54ab659064990ff37a9234c9792102a3b88277d6 (patch) | |
tree | e7e6067d0936bd04212db6e0d3df85a74e0b194f /stdlib/source/test | |
parent | 77301f3a456c015daa9d8f9aa3d80fd4e45f8e7e (diff) |
De-bracing | part 1
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/test/lux.lux | 3 | ||||
-rw-r--r-- | stdlib/source/test/lux/debug.lux | 2 | ||||
-rw-r--r-- | stdlib/source/test/lux/ffi.old.lux | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/stdlib/source/test/lux.lux b/stdlib/source/test/lux.lux index c67d6efc5..238bf666d 100644 --- a/stdlib/source/test/lux.lux +++ b/stdlib/source/test/lux.lux @@ -986,7 +986,8 @@ [#left expected_nat #right expected_int])] (and (/.case expected_pair (/.^multi (/.^ (!pair 0 actual_right)) - {actual_right +0}) + [actual_right + +0]) true _ diff --git a/stdlib/source/test/lux/debug.lux b/stdlib/source/test/lux/debug.lux index 5eb6e8e69..155df06fc 100644 --- a/stdlib/source/test/lux/debug.lux +++ b/stdlib/source/test/lux/debug.lux @@ -250,7 +250,7 @@ (`` (exec <no_parameters> (/.here foo - {bar %.nat}) + [bar %.nat]) true))))) (_.cover [/.unknown_local_binding] (exception.match? /.unknown_local_binding diff --git a/stdlib/source/test/lux/ffi.old.lux b/stdlib/source/test/lux/ffi.old.lux index 27d18d002..df05fdf29 100644 --- a/stdlib/source/test/lux/ffi.old.lux +++ b/stdlib/source/test/lux/ffi.old.lux @@ -38,7 +38,7 @@ ("private" increase java/lang/Long) ("private" counter java/lang/Long) ... Methods - ("public" [] (new {increase java/lang/Long} {counter java/lang/Long}) [] + ("public" [] (new [increase java/lang/Long counter java/lang/Long]) [] (exec (:= ::increase increase) (:= ::counter counter) |