aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi.py.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-03-16 08:37:23 -0400
committerEduardo Julian2022-03-16 08:37:23 -0400
commitbf53ee92fc3c33a4885aa227e55d24f7ba3cb2c4 (patch)
tree49683a62ae8e110c62b42a9a6386bb2ddb3c47c6 /stdlib/source/test/lux/ffi.py.lux
parentd710d9f4fc098e7c243c8a5f23cd42683f13e07f (diff)
De-sigil-ification: prefix :
Diffstat (limited to 'stdlib/source/test/lux/ffi.py.lux')
-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))