diff options
author | Eduardo Julian | 2018-07-07 07:17:54 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-07 07:17:54 -0400 |
commit | b6ef43d722d60bb82f939025f239ff7a8f160011 (patch) | |
tree | 4f46e030be463cee0f361c3e6832a01d18012bd8 /stdlib/test | |
parent | 758ed85b01de0a655ac4f91c3682111de220031d (diff) |
- Improved syntax for functions.
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/test/lux/lang/compiler/analysis/procedure/common.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/test/test/lux/lang/compiler/analysis/procedure/common.lux b/stdlib/test/test/lux/lang/compiler/analysis/procedure/common.lux index fc1a209d9..1651feaf9 100644 --- a/stdlib/test/test/lux/lang/compiler/analysis/procedure/common.lux +++ b/stdlib/test/test/lux/lang/compiler/analysis/procedure/common.lux @@ -49,7 +49,7 @@ (check-failure+ "lux is" (list primC antiC) Bool)) (test "Can 'try' risky IO computations." (check-success+ "lux try" - (list (` ("lux function" (~' _) (~' _) (~ primC)))) + (list (` ([(~' _) (~' _)] (~ primC)))) (type (Either Text primT)))) )))) @@ -289,7 +289,7 @@ (test "Can schedule an IO computation to run concurrently at some future time." (check-success+ "lux process schedule" (list timeC - (` ("lux function" (~' _) (~' _) (~ primC)))) + (` ([(~' _) (~' _)] (~ primC)))) Any)) )))) |