aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/concurrency/frp.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/control/concurrency/frp.lux')
-rw-r--r--stdlib/source/test/lux/control/concurrency/frp.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/test/lux/control/concurrency/frp.lux b/stdlib/source/test/lux/control/concurrency/frp.lux
index 675eabfa3..8bb5a33fd 100644
--- a/stdlib/source/test/lux/control/concurrency/frp.lux
+++ b/stdlib/source/test/lux/control/concurrency/frp.lux
@@ -34,7 +34,7 @@
(def: comparison
(Comparison /.Channel)
(function (_ == left right)
- (io.run
+ (io.run!
(do io.monad
[?left (async.poll left)
?right (async.poll right)]
@@ -84,14 +84,14 @@
($monad.spec ..injection ..comparison /.monad))
(_.cover [/.Channel /.Sink /.channel]
- (case (io.run
+ (case (io.run!
(do (try.with io.monad)
[.let [[channel sink] (/.channel [])]
_ (\ sink feed sample)
_ (\ sink close)]
(in channel)))
(#try.Success channel)
- (io.run
+ (io.run!
(do io.monad
[?actual (async.poll channel)]
(in (case ?actual
@@ -104,7 +104,7 @@
(#try.Failure error)
false))
(_.cover [/.channel_is_already_closed]
- (case (io.run
+ (case (io.run!
(do (try.with io.monad)
[.let [[channel sink] (/.channel [])]
_ (\ sink close)]