aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/artifact/type.lux
diff options
context:
space:
mode:
authorEduardo Julian2020-12-10 00:15:15 -0400
committerEduardo Julian2020-12-10 00:15:15 -0400
commit14287585025b2d8fff1991691def9e643b039ac8 (patch)
tree4fdbe2aafa907d1dd0f47150c545adf3eabeb124 /stdlib/source/test/aedifex/artifact/type.lux
parent893c76ad530ca0e81cd84602543c3114407f4592 (diff)
Re-named "with-cover" to "for".
Diffstat (limited to 'stdlib/source/test/aedifex/artifact/type.lux')
-rw-r--r--stdlib/source/test/aedifex/artifact/type.lux20
1 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/source/test/aedifex/artifact/type.lux b/stdlib/source/test/aedifex/artifact/type.lux
index 0d8284d7c..84807a8c6 100644
--- a/stdlib/source/test/aedifex/artifact/type.lux
+++ b/stdlib/source/test/aedifex/artifact/type.lux
@@ -18,13 +18,13 @@
(def: #export test
Test
(<| (_.covering /._)
- (_.with-cover [/.Type]
- ($_ _.and
- (_.cover [/.lux-library /.jvm-library
- /.pom /.md5 /.sha-1]
- (let [options (list /.lux-library /.jvm-library
- /.pom /.md5 /.sha-1)
- uniques (set.from-list text.hash options)]
- (n.= (list.size options)
- (set.size uniques))))
- ))))
+ (_.for [/.Type]
+ ($_ _.and
+ (_.cover [/.lux-library /.jvm-library
+ /.pom /.md5 /.sha-1]
+ (let [options (list /.lux-library /.jvm-library
+ /.pom /.md5 /.sha-1)
+ uniques (set.from-list text.hash options)]
+ (n.= (list.size options)
+ (set.size uniques))))
+ ))))