aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/ffi.jvm.lux')
-rw-r--r--stdlib/source/test/lux/ffi.jvm.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/test/lux/ffi.jvm.lux b/stdlib/source/test/lux/ffi.jvm.lux
index 071e43a3c..5a16902a7 100644
--- a/stdlib/source/test/lux/ffi.jvm.lux
+++ b/stdlib/source/test/lux/ffi.jvm.lux
@@ -70,7 +70,7 @@
(def: for_conversions
Test
- (do {! random.monad}
+ (do [! random.monad]
[long (\ ! each (|>> (:as /.Long)) random.int)
integer (\ ! each (|>> (:as /.Long) /.long_to_int) random.int)
byte (\ ! each (|>> (:as /.Long) /.long_to_byte) random.int)
@@ -105,7 +105,7 @@
(def: for_arrays
Test
- (do {! random.monad}
+ (do [! random.monad]
[size (|> random.nat (\ ! each (|>> (n.% 100) (n.max 1))))
idx (|> random.nat (\ ! each (n.% size)))
value (\ ! each (|>> (:as java/lang/Long)) random.int)]
@@ -131,7 +131,7 @@
(def: for_miscellaneous
Test
- (`` (do {! random.monad}
+ (`` (do [! random.monad]
[sample (\ ! each (|>> (:as java/lang/Object))
(random.ascii 1))
boolean (\ ! each (|>> (:as /.Boolean)) random.bit)
@@ -488,7 +488,7 @@
(def: for_class
Test
- (do {! random.monad}
+ (do [! random.monad]
[expected random.nat
left random.int
right random.int