aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi.lua.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/ffi.lua.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/ffi.lua.lux b/stdlib/source/test/lux/ffi.lua.lux
index 4c0a6aed0..75faa3349 100644
--- a/stdlib/source/test/lux/ffi.lua.lux
+++ b/stdlib/source/test/lux/ffi.lua.lux
@@ -27,7 +27,7 @@
(~~ (template [<type> <sample>]
[(_.cover [<type>]
(exec
- (: <type> <sample>)
+ (is <type> <sample>)
true))]
[/.Boolean boolean]
@@ -41,8 +41,8 @@
[(_.cover [<type>]
(exec
(|> []
- (:as <type>)
- (: (Ex (_ a) (/.Object a))))
+ (as <type>)
+ (is (Ex (_ a) (/.Object a))))
true))]
[/.Nil]
@@ -53,8 +53,8 @@
(|> (/.function (_ [input/0 Nat])
Int
(.int input/0))
- (: /.Function)
- (: (Ex (_ a) (/.Object a))))
+ (is /.Function)
+ (is (Ex (_ a) (/.Object a))))
true))
(_.cover [/.import:]
(case (io.run! (..os/getenv string))