aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/specification/lux/world/program.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/specification/lux/world/program.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/specification/lux/world/program.lux b/stdlib/source/specification/lux/world/program.lux
index e79429627..411f29fe9 100644
--- a/stdlib/source/specification/lux/world/program.lux
+++ b/stdlib/source/specification/lux/world/program.lux
@@ -7,7 +7,7 @@
[control
["." try]
[concurrency
- ["." promise (#+ Promise)]]]
+ ["." async (#+ Async)]]]
[data
["." text]
[collection
@@ -19,10 +19,10 @@
["." /]])
(def: #export (spec subject)
- (-> (/.Program Promise) Test)
+ (-> (/.Program Async) Test)
(do random.monad
[exit random.int]
- (wrap (do {! promise.monad}
+ (wrap (do {! async.monad}
[environment (/.environment ! subject)]
(_.cover' [/.Program]
(and (not (dictionary.empty? environment))