aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/metadata/snapshot.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/aedifex/metadata/snapshot.lux')
-rw-r--r--stdlib/source/test/aedifex/metadata/snapshot.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/source/test/aedifex/metadata/snapshot.lux b/stdlib/source/test/aedifex/metadata/snapshot.lux
index c45b817cd..7cff9954a 100644
--- a/stdlib/source/test/aedifex/metadata/snapshot.lux
+++ b/stdlib/source/test/aedifex/metadata/snapshot.lux
@@ -52,12 +52,12 @@
(def: random_instant
(Random Instant)
(do [! random.monad]
- [year (# ! each (|>> (n.% 9,000) (n.+ 1,000) .int) random.nat)
- month (# ! each (|>> (n.% 12) (n.+ 1)) random.nat)
- day_of_month (# ! each (|>> (n.% 28) (n.+ 1)) random.nat)
- hour (# ! each (n.% 24) random.nat)
- minute (# ! each (n.% 60) random.nat)
- second (# ! each (n.% 60) random.nat)]
+ [year (at ! each (|>> (n.% 9,000) (n.+ 1,000) .int) random.nat)
+ month (at ! each (|>> (n.% 12) (n.+ 1)) random.nat)
+ day_of_month (at ! each (|>> (n.% 28) (n.+ 1)) random.nat)
+ hour (at ! each (n.% 24) random.nat)
+ minute (at ! each (n.% 60) random.nat)
+ second (at ! each (n.% 60) random.nat)]
(in (try.trusted
(do try.monad
[year (year.year year)
@@ -101,7 +101,7 @@
/.format
list
(<xml>.result /.parser)
- (try#each (# /.equivalence = expected))
+ (try#each (at /.equivalence = expected))
(try.else false)))
(_.coverage [/.uri]
(text#= (//.remote_artifact_uri artifact)
@@ -110,7 +110,7 @@
[home (random.lower_case 5)
working_directory (random.lower_case 5)
.let [program (program.async (program.mock environment.empty home working_directory))
- fs (file.mock (# file.default separator))
+ fs (file.mock (at file.default separator))
repository (///repository/local.repository program fs)]]
(in (do async.monad
[wrote? (/.write repository artifact expected)
@@ -121,7 +121,7 @@
{try.#Failure _} false)
(case actual
{try.#Success actual}
- (# /.equivalence = expected actual)
+ (at /.equivalence = expected actual)
{try.#Failure _}
false))))))