aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test
diff options
context:
space:
mode:
authorEduardo Julian2017-12-05 19:08:17 -0400
committerEduardo Julian2017-12-05 19:08:17 -0400
commit9126ee1746487163612e7319a28d1f27f767398a (patch)
tree9c2d6957e111731f3e5855e0f24b4c41e55f8933 /stdlib/test
parent8a51602b3507a18a5ffae1710ba4e915cf31fe39 (diff)
- Brought luxc and new-luxc closer together.
Diffstat (limited to 'stdlib/test')
-rw-r--r--stdlib/test/test/lux/host.jvm.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/test/test/lux/host.jvm.lux b/stdlib/test/test/lux/host.jvm.lux
index 4ed187c36..a0b44ec62 100644
--- a/stdlib/test/test/lux/host.jvm.lux
+++ b/stdlib/test/test/lux/host.jvm.lux
@@ -70,12 +70,12 @@
(let [capped-sample (|> sample <to> <from>)]
(|> capped-sample <to> <from> (i/= capped-sample)))))]
- [&.l2b &.b2l "Can succesfully convert to/from byte."]
- [&.l2s &.s2l "Can succesfully convert to/from short."]
- [&.l2i &.i2l "Can succesfully convert to/from int."]
- [&.l2f &.f2l "Can succesfully convert to/from float."]
- [&.l2d &.d2l "Can succesfully convert to/from double."]
- [(<| &.i2c &.l2i) (<| &.i2l &.c2i) "Can succesfully convert to/from char."]
+ [&.long-to-byte &.byte-to-long "Can succesfully convert to/from byte."]
+ [&.long-to-short &.short-to-long "Can succesfully convert to/from short."]
+ [&.long-to-int &.int-to-long "Can succesfully convert to/from int."]
+ [&.long-to-float &.float-to-long "Can succesfully convert to/from float."]
+ [&.long-to-double &.double-to-long "Can succesfully convert to/from double."]
+ [(<| &.int-to-char &.long-to-int) (<| &.int-to-long &.char-to-int) "Can succesfully convert to/from char."]
)]
($_ seq
<int-convs>