aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/command/version.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-07-26 01:45:57 -0400
committerEduardo Julian2021-07-26 01:45:57 -0400
commite64b6d0114c26a455e19a416b5f02a4d19dd711f (patch)
tree020e426a40aefebf6b052e799b33c40fe4d8a80c /stdlib/source/test/aedifex/command/version.lux
parent62b3abfcc014ca1c19d62aacdd497f6a250b372c (diff)
Re-named Promise to Async.
Diffstat (limited to 'stdlib/source/test/aedifex/command/version.lux')
-rw-r--r--stdlib/source/test/aedifex/command/version.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/test/aedifex/command/version.lux b/stdlib/source/test/aedifex/command/version.lux
index d0d172a7a..739a02fef 100644
--- a/stdlib/source/test/aedifex/command/version.lux
+++ b/stdlib/source/test/aedifex/command/version.lux
@@ -8,7 +8,7 @@
["." try]
["." exception (#+ exception:)]
[concurrency
- ["." promise (#+ Promise)]]]
+ ["." async (#+ Async)]]]
[data
["." maybe]
["." text ("#\." equivalence)
@@ -58,7 +58,7 @@
(exception.throw ..console_is_closed! []))))
(def: #export echo
- (-> Text (Console Promise))
+ (-> Text (Console Async))
(|>> [true]
(console.mock ..mock)
console.async))
@@ -68,9 +68,9 @@
(<| (_.covering /._)
(do random.monad
[profile @profile.random]
- (wrap (do promise.monad
+ (wrap (do async.monad
[#let [console (..echo "")]
- verdict (do (try.with promise.monad)
+ verdict (do (try.with async.monad)
[_ (/.do! console profile)
logging (\ console read_line [])]
(wrap (text\= (version.format language/lux.version)