aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/world/time/series/average.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/world/time/series/average.lux')
-rw-r--r--stdlib/source/test/lux/world/time/series/average.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/test/lux/world/time/series/average.lux b/stdlib/source/test/lux/world/time/series/average.lux
index fc5843ca6..32955cba6 100644
--- a/stdlib/source/test/lux/world/time/series/average.lux
+++ b/stdlib/source/test/lux/world/time/series/average.lux
@@ -57,7 +57,7 @@
Test
(<| (_.covering /._)
(do [! random.monad]
- [expected_events (of ! each (|>> (n.% 9) (n.+ 2)) random.nat)
+ [expected_events (of ! each (|>> (n.% 16) (n.+ 8)) random.nat)
input (series expected_events)
additional (of ! each (n.% expected_events) random.nat)])
(all _.and
@@ -110,9 +110,9 @@
(well_windowed? input additional weighted))
all_are_different!
- (and (not (//#= exponential simple))
- (not (//#= exponential weighted))
- (not (//#= simple weighted)))]]
+ (not (or (//#= exponential simple)
+ (//#= exponential weighted)
+ (//#= simple weighted)))]]
(in (and all_are_well_windowed!
all_are_different!)))))
))