aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/specification/aedifex/repository.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/specification/aedifex/repository.lux')
-rw-r--r--stdlib/source/specification/aedifex/repository.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/specification/aedifex/repository.lux b/stdlib/source/specification/aedifex/repository.lux
index 3d8b90459..52a7e1bfe 100644
--- a/stdlib/source/specification/aedifex/repository.lux
+++ b/stdlib/source/specification/aedifex/repository.lux
@@ -32,17 +32,17 @@
(in (all unit.and
(do async.monad
[.let [good_uri (/remote.uri (the //artifact.#version valid_artifact) valid_artifact //artifact/extension.lux_library)]
- good_upload! (at subject upload good_uri expected)
- good_download! (at subject download good_uri)
+ good_upload! (of subject upload good_uri expected)
+ good_download! (of subject download good_uri)
.let [bad_uri (/remote.uri (the //artifact.#version invalid_artifact) invalid_artifact //artifact/extension.lux_library)]
- bad_upload! (at subject upload bad_uri expected)
- bad_download! (at subject download bad_uri)]
+ bad_upload! (of subject upload bad_uri expected)
+ bad_download! (of subject download bad_uri)]
(unit.coverage [/.Repository]
(let [successfull_flow!
(when [good_upload! good_download!]
[{try.#Success _} {try.#Success actual}]
- (at binary.equivalence = expected actual)
+ (of binary.equivalence = expected actual)
_
false)