aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi.py.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/ffi.py.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/ffi.py.lux b/stdlib/source/test/lux/ffi.py.lux
index ec8381e92..b3e8f9fa6 100644
--- a/stdlib/source/test/lux/ffi.py.lux
+++ b/stdlib/source/test/lux/ffi.py.lux
@@ -30,7 +30,7 @@
(~~ (template [<type> <sample>]
[(_.cover [<type>]
(exec
- (: <type> <sample>)
+ (is <type> <sample>)
true))]
[/.Boolean boolean]
@@ -44,8 +44,8 @@
[(_.cover [<type>]
(exec
(|> []
- (:as <type>)
- (: (Ex (_ a) (/.Object a))))
+ (as <type>)
+ (is (Ex (_ a) (/.Object a))))
true))]
[/.None]
@@ -56,8 +56,8 @@
(|> (/.function (_ [input/0 Nat])
Int
(.int input/0))
- (: /.Function)
- (: (Ex (_ a) (/.Object a))))
+ (is /.Function)
+ (is (Ex (_ a) (/.Object a))))
true))
(_.cover [/.import:]
(and (i.= (os::R_OK) (os::R_OK))