Skip to content

Commit 24bf6aa

Browse files
Update test/beta_inc.jl
Co-authored-by: David Widmann <[email protected]>
1 parent d5161e0 commit 24bf6aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/beta_inc.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
@testset "a=0.5, b=0.8, x=$x" for (x, val) in zip(0.01:0.01:0.99, ans2)
1313
@test beta_inc(0.5, 0.8, x, 1.0 - x)[1] val # scipy.special.betainc(0.5,0.8,x)
1414
end
15-
@testset "a=0.9, b=0.8, x=$x" for (ctr, x) in enumerate(0.01:0.01:0.99)
16-
@test beta_inc(0.9, 0.8, x, 1.0 - x)[1] ans3[ctr]#scipy.special.betainc(0.9,0.8,x)
15+
@testset "a=0.9, b=0.8, x=$x" for (x, val) in zip(0.01:0.01:0.99, ans3)
16+
@test beta_inc(0.9, 0.8, x, 1.0 - x)[1] val # scipy.special.betainc(0.9,0.8,x)
1717
end
1818
@testset "a=80.9, b=0.8, x=$x" for (ctr, x) in enumerate(0.01:0.01:0.99)
1919
@test beta_inc(80.9, 0.8, x, 1.0 - x)[1] ans4[ctr]#scipy.special.betainc(80.9,0.8,x)

0 commit comments

Comments
 (0)