aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/ffi/export.rb.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/ffi/export.rb.lux')
-rw-r--r--stdlib/source/test/lux/ffi/export.rb.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/test/lux/ffi/export.rb.lux b/stdlib/source/test/lux/ffi/export.rb.lux
index 0ceaf7e00..3ab6e3c93 100644
--- a/stdlib/source/test/lux/ffi/export.rb.lux
+++ b/stdlib/source/test/lux/ffi/export.rb.lux
@@ -33,11 +33,11 @@
(def: .public test
Test
(<| (_.covering /._)
- ($_ _.and
- (_.cover [/.export:]
- (and (n.= <nat> (..nullary []))
- (n.= (n.+ <nat> <nat>) (..unary <nat>))
- (n.= <nat> (..CONSTANT))
- (n.= (n.+ <nat> <nat>) ((..$global) <nat>))))
- )))
+ (all _.and
+ (_.cover [/.export:]
+ (and (n.= <nat> (..nullary []))
+ (n.= (n.+ <nat> <nat>) (..unary <nat>))
+ (n.= <nat> (..CONSTANT))
+ (n.= (n.+ <nat> <nat>) ((..$global) <nat>))))
+ )))
)