Skip to content

Commit fe972e8

Browse files
authored
Fix test error (#93)
* Fix test error * Fix another tolerance
1 parent 439e470 commit fe972e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/stepper.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
@test length(as) == length(bs) == 998
2323

24-
@test mean(as) 0.5 atol=1e-2
24+
@test mean(as) 0.5 atol=2e-2
2525
@test var(as) 1 / 12 atol=5e-3
2626
@test mean(bs) 0.0 atol=5e-2
2727
@test var(bs) 1 atol=5e-2

test/transducer.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
@test length(as) == length(bs) == 998
4747

48-
@test mean(as) 0.5 atol=1e-2
48+
@test mean(as) 0.5 atol=2e-2
4949
@test var(as) 1 / 12 atol=5e-3
5050
@test mean(bs) 0.0 atol=5e-2
5151
@test var(bs) 1 atol=5e-2

0 commit comments

Comments
 (0)