aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/concurrency/atom.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/control/concurrency/atom.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/test/lux/control/concurrency/atom.lux b/stdlib/source/test/lux/control/concurrency/atom.lux
index 8902f0a8f..bdc56521a 100644
--- a/stdlib/source/test/lux/control/concurrency/atom.lux
+++ b/stdlib/source/test/lux/control/concurrency/atom.lux
@@ -18,23 +18,23 @@
(<| (_.covering /._)
(do random.monad
[value random.nat
- swap-value random.nat
- set-value random.nat
+ swap_value random.nat
+ set_value random.nat
#let [box (/.atom value)]]
($_ _.and
(_.cover [/.Atom /.atom /.read]
(n.= value
(io.run (/.read box))))
- (_.cover [/.compare-and-swap]
- (and (io.run (/.compare-and-swap value swap-value box))
- (n.= swap-value
+ (_.cover [/.compare_and_swap]
+ (and (io.run (/.compare_and_swap value swap_value box))
+ (n.= swap_value
(io.run (/.read box)))))
(_.cover [/.update]
(exec (io.run (/.update inc box))
- (n.= (inc swap-value)
+ (n.= (inc swap_value)
(io.run (/.read box)))))
(_.cover [/.write]
- (exec (io.run (/.write set-value box))
- (n.= set-value
+ (exec (io.run (/.write set_value box))
+ (n.= set_value
(io.run (/.read box)))))
))))