aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/concurrency/semaphore.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/control/concurrency/semaphore.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/control/concurrency/semaphore.lux b/stdlib/source/test/lux/control/concurrency/semaphore.lux
index 6f87f0889..44b2241f3 100644
--- a/stdlib/source/test/lux/control/concurrency/semaphore.lux
+++ b/stdlib/source/test/lux/control/concurrency/semaphore.lux
@@ -45,7 +45,7 @@
[result (async.within ..delay (/.wait! semaphore))]
(_.cover' [/.semaphore]
(case result
- (#.Some _)
+ {#.Some _}
true
#.None
@@ -58,7 +58,7 @@
result (async.within ..delay (/.wait! semaphore))]
(_.cover' [/.wait!]
(case result
- (#.Some _)
+ {#.Some _}
false
#.None
@@ -74,7 +74,7 @@
result/1 (async.within ..delay block)]
(_.cover' [/.signal!]
(case [result/0 result/1 open_positions]
- [#.None (#.Some _) (#try.Success +0)]
+ [#.None {#.Some _} {#try.Success +0}]
true
_
@@ -86,7 +86,7 @@
[outcome (/.signal! semaphore)]
(_.cover' [/.semaphore_is_maxed_out]
(case outcome
- (#try.Failure error)
+ {#try.Failure error}
(exception.match? /.semaphore_is_maxed_out error)
_
@@ -148,7 +148,7 @@
[0 #.None]
true
- [_ (#.Some limit)]
+ [_ {#.Some limit}]
(and (n.> 0 raw)
(n.= raw (refinement.value limit)))