Skip to content

Commit

Permalink
Lower test bound to machine-precision for helpers test where == wasn'…
Browse files Browse the repository at this point in the history
…t working
  • Loading branch information
chenwilliam77 committed Mar 19, 2021
1 parent 1c3ab95 commit fc82562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ close(file)

####################################################################
@testset "MvNormal Mixture Draw" begin
@test maximum(abs.(test_θ_new - saved_θ_new)) < 1e-15 # avoid problems with different Julia versions when testing via GitHub Actions
@test maximum(abs.(test_θ_new - saved_θ_new)) <= eps() # avoid problems with different Julia versions when testing via GitHub Actions
end


Expand Down

0 comments on commit fc82562

Please sign in to comment.