diff options
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) |