From b6ef43d722d60bb82f939025f239ff7a8f160011 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sat, 7 Jul 2018 07:17:54 -0400 Subject: - Improved syntax for functions. --- stdlib/test/test/lux/lang/compiler/analysis/procedure/common.lux | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stdlib/test') 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)) )))) -- cgit v1.2.3