aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/ffi.jvm.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/test/lux/ffi.jvm.lux b/stdlib/source/test/lux/ffi.jvm.lux
index 55c812d72..41a794c4e 100644
--- a/stdlib/source/test/lux/ffi.jvm.lux
+++ b/stdlib/source/test/lux/ffi.jvm.lux
@@ -110,24 +110,24 @@
idx (|> random.nat (\ ! map (n.% size)))
value (\ ! map (|>> (:as java/lang/Long)) random.int)]
($_ _.and
- (_.cover [/.array /.array_length]
+ (_.cover [/.array /.length]
(|> size
(/.array java/lang/Long)
- /.array_length
+ /.length
(n.= size)))
- (_.cover [/.array_write /.array_read]
+ (_.cover [/.write! /.read!]
(|> (/.array java/lang/Long size)
- (/.array_write idx value)
- (/.array_read idx)
+ (/.write! idx value)
+ (/.read! idx)
(:as Int)
(i.= (:as Int value))))
(_.cover [/.cannot_convert_to_jvm_type]
(let [array (:as (Array Nothing)
(array.empty 1))]
(|> array
- /.array_length
+ /.length
..macro_error
- (text.contains? (get@ #exception.label /.cannot_convert_to_jvm_type))))))))
+ (text.contains? (value@ #exception.label /.cannot_convert_to_jvm_type))))))))
(def: for_miscellaneous
Test
@@ -198,7 +198,7 @@
[/.Character /.char character character\=]
))
(_.cover [/.cannot_cast_to_non_object]
- (text.contains? (get@ #exception.label /.cannot_cast_to_non_object)
+ (text.contains? (value@ #exception.label /.cannot_cast_to_non_object)
(macro_error (/.:as boolean (: /.Boolean boolean)))))
(_.cover [/.:as]
(|> string