aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/metadata/artifact.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/aedifex/metadata/artifact.lux')
-rw-r--r--stdlib/source/test/aedifex/metadata/artifact.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/aedifex/metadata/artifact.lux b/stdlib/source/test/aedifex/metadata/artifact.lux
index 1459a88e5..4a0294d61 100644
--- a/stdlib/source/test/aedifex/metadata/artifact.lux
+++ b/stdlib/source/test/aedifex/metadata/artifact.lux
@@ -44,9 +44,9 @@
(def: .public random
(Random /.Metadata)
(all random.and
- (random.ascii/alpha 5)
- (random.ascii/alpha 5)
- (random.list 5 (random.ascii/alpha 5))
+ (random.alphabetic 5)
+ (random.alphabetic 5)
+ (random.list 5 (random.alphabetic 5))
(do [! random.monad]
[year (# ! each (|>> (n.% 9,000) (n.+ 1,000) .int) random.nat)
month (# ! each (|>> (n.% 12) (n.+ 1)) random.nat)
@@ -95,8 +95,8 @@
(text#= (//.remote_project_uri artifact)
(/.uri artifact)))
(do random.monad
- [home (random.ascii/lower 5)
- working_directory (random.ascii/lower 5)
+ [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))
repository (///repository/local.repository program fs)]]