aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/sum.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/data/sum.lux')
-rw-r--r--stdlib/source/test/lux/data/sum.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/test/lux/data/sum.lux b/stdlib/source/test/lux/data/sum.lux
index c0fae2333..bc1d9c70c 100644
--- a/stdlib/source/test/lux/data/sum.lux
+++ b/stdlib/source/test/lux/data/sum.lux
@@ -37,19 +37,19 @@
(_.cover [/.hash]
(let [hash (/.hash i.hash n.hash)]
(and (n.= (\ i.hash hash left)
- (\ hash hash (#.Left left)))
+ (\ hash hash {#.Left left}))
(n.= (\ n.hash hash right)
- (\ hash hash (#.Right right)))))))
+ (\ hash hash {#.Right right}))))))
(_.cover [/.left]
(|> (/.left expected)
(: (Or Nat Nat))
- (case> (0 #0 actual) (n.= expected actual)
+ (case> {0 #0 actual} (n.= expected actual)
_ false)))
(_.cover [/.right]
(|> (/.right expected)
(: (Or Nat Nat))
- (case> (0 #1 actual) (n.= expected actual)
+ (case> {0 #1 actual} (n.= expected actual)
_ false)))
(_.cover [/.either]
(and (|> (/.left expected)
@@ -64,11 +64,11 @@
(and (|> (/.left expected)
(: (Or Nat Nat))
(/.then (n.+ shift) (n.- shift))
- (case> (0 #0 actual) (n.= (n.+ shift expected) actual) _ false))
+ (case> {0 #0 actual} (n.= (n.+ shift expected) actual) _ false))
(|> (/.right expected)
(: (Or Nat Nat))
(/.then (n.+ shift) (n.- shift))
- (case> (0 #1 actual) (n.= (n.- shift expected) actual) _ false))))
+ (case> {0 #1 actual} (n.= (n.- shift expected) actual) _ false))))
(do !
[size (\ ! each (n.% 5) random.nat)
expected (random.list size random.nat)]