diff options
Diffstat (limited to 'stdlib/source/test/lux/math.lux')
-rw-r--r-- | stdlib/source/test/lux/math.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/test/lux/math.lux b/stdlib/source/test/lux/math.lux index da5cfd057..ca72f6882 100644 --- a/stdlib/source/test/lux/math.lux +++ b/stdlib/source/test/lux/math.lux @@ -98,11 +98,11 @@ (|> sample /.exp /.log (f.approximately? +0.000000000000001 sample))) (_.cover [/.e] (~= +1.0 (/.log /.e))) - (_.cover [/.pow /.log'] + (_.cover [/.pow /.log_by] (let [sample (f.abs sample)] (|> sample (/.pow power) - (/.log' sample) + (/.log_by sample) (~= power)))) )) (do {! random.monad} |