aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test/test/lux/data/number.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/test/test/lux/data/number.lux')
-rw-r--r--stdlib/test/test/lux/data/number.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/test/test/lux/data/number.lux b/stdlib/test/test/lux/data/number.lux
index 7cdbe5848..e29521e87 100644
--- a/stdlib/test/test/lux/data/number.lux
+++ b/stdlib/test/test/lux/data/number.lux
@@ -4,7 +4,7 @@
(control ["M" monad (#+ do Monad)]
pipe)
(data number
- [text "Text/" Monoid<Text> Equivalence<Text>]
+ [text ("text/" Equivalence<Text>)]
text/format)
["r" math/random])
lux/test)
@@ -35,11 +35,11 @@
(^open) <Order>]]
(test "" (and (>= x (abs x))
## abs(0.0) == 0.0 && negate(abs(0.0)) == -0.0
- (or (Text/= "Frac" category)
+ (or (text/= "Frac" category)
(not (= x (negate x))))
(= x (negate (negate x)))
## There is loss of precision when multiplying
- (or (Text/= "Rev" category)
+ (or (text/= "Rev" category)
(= x (* (signum x)
(abs x)))))))))]