Skip to content

Commit 4df7a01

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

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
@@ -15,8 +15,8 @@
1515
@testset "a=0.9, b=0.8, x=$x" for (x, val) in zip(0.01:0.01:0.99, ans3)
1616
@test beta_inc(0.9, 0.8, x, 1.0 - x)[1] val # scipy.special.betainc(0.9,0.8,x)
1717
end
18-
@testset "a=80.9, b=0.8, x=$x" for (ctr, x) in enumerate(0.01:0.01:0.99)
19-
@test beta_inc(80.9, 0.8, x, 1.0 - x)[1] ans4[ctr]#scipy.special.betainc(80.9,0.8,x)
18+
@testset "a=80.9, b=0.8, x=$x" for (x, val) in zip(0.01:0.01:0.99, ans4)
19+
@test beta_inc(80.9, 0.8, x, 1.0 - x)[1] val # scipy.special.betainc(80.9,0.8,x)
2020
end
2121
@testset "a=1.7, b=10.5, x=$x" for (ctr, x) in enumerate(0.01:0.01:0.99)
2222
@test beta_inc(1.7, 10.5, x, 1.0 - x)[1] ans5[ctr]#scipy.special.betainc(1.7,10.5,x)

0 commit comments

Comments
 (0)