Skip to content

Commit 4a705d2

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

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
@@ -18,8 +18,8 @@
1818
@testset "a=80.9, b=0.8, x=$x" for (x, val) in zip(0.01:0.01:0.99, ans4)
1919
@test beta_inc(80.9, 0.8, x, 1.0 - x)[1] val # scipy.special.betainc(80.9,0.8,x)
2020
end
21-
@testset "a=1.7, b=10.5, x=$x" for (ctr, x) in enumerate(0.01:0.01:0.99)
22-
@test beta_inc(1.7, 10.5, x, 1.0 - x)[1] ans5[ctr]#scipy.special.betainc(1.7,10.5,x)
21+
@testset "a=1.7, b=10.5, x=$x" for (x, val) in zip(0.01:0.01:0.99, ans5)
22+
@test beta_inc(1.7, 10.5, x, 1.0 - x)[1] val # scipy.special.betainc(1.7,10.5,x)
2323
end
2424
@testset "a=100.5, b=100.5, x=$x" for (ctr, x) in enumerate(0.01:0.01:0.99)
2525
@test beta_inc(100.5, 100.5, x, 1.0 - x)[1] ans6[ctr]#scipy.special.betainc(100.5,100.5,x)

0 commit comments

Comments
 (0)