aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/test/test/lux/host.jvm.lux8
1 files changed, 0 insertions, 8 deletions
diff --git a/stdlib/test/test/lux/host.jvm.lux b/stdlib/test/test/lux/host.jvm.lux
index 4bd96ad62..93fe5b5e6 100644
--- a/stdlib/test/test/lux/host.jvm.lux
+++ b/stdlib/test/test/lux/host.jvm.lux
@@ -82,14 +82,6 @@
(assert "Can run code in a \"synchronized\" block."
(&;synchronized "" true))
- ## (assert "Can safely try risky code."
- ## (and (case (&;try [])
- ## (#;Right _) true
- ## (#;Left _) false)
- ## (case (&;try (_lux_proc ["jvm" "throw"] [(Exception.new "Uh, oh...")]))
- ## (#;Right _) false
- ## (#;Left _) true)))
-
(assert "Can access Class instances."
(Text/= "java.lang.Class" (Class.getName [] (&;class-for java.lang.Class))))