aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test
diff options
context:
space:
mode:
authorEduardo Julian2021-09-08 22:24:08 -0400
committerEduardo Julian2021-09-08 22:24:08 -0400
commit54ab659064990ff37a9234c9792102a3b88277d6 (patch)
treee7e6067d0936bd04212db6e0d3df85a74e0b194f /stdlib/source/test
parent77301f3a456c015daa9d8f9aa3d80fd4e45f8e7e (diff)
De-bracing | part 1
Diffstat (limited to 'stdlib/source/test')
-rw-r--r--stdlib/source/test/lux.lux3
-rw-r--r--stdlib/source/test/lux/debug.lux2
-rw-r--r--stdlib/source/test/lux/ffi.old.lux2
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)