diff options
author | Eduardo Julian | 2017-04-12 21:07:23 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-04-12 21:07:23 -0400 |
commit | 962502e64dc170088af133470eb878d7dd0e8d4c (patch) | |
tree | 474ba3e6a95a7db5959972ff449bc157511e4393 /stdlib/test | |
parent | 534c76a868f35c2eecc13e60df343e12faf84f47 (diff) |
- Simplified some of the documentation and error messages.
Diffstat (limited to 'stdlib/test')
-rw-r--r-- | stdlib/test/test/lux/host.jvm.lux | 8 |
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)))) |