Skip to content

Commit

Permalink
Fix another floating point error
Browse files Browse the repository at this point in the history
  • Loading branch information
yufongpeng committed Jan 18, 2023
1 parent f3b776a commit d524c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ isapprox(x::NTuple{N, Float64}, y::NTuple{N, Float64}, atol::NTuple{N, Float64}
global aovf = anova(wlm1, wlm2)
@test !(@test_error test_show(aov))
@test !(@test_error test_show(aovf))
@test nobs(aov) == sum(aov.anovamodel.model.model.rr.wts)
@test nobs(aov) == round(Int, sum(aov.anovamodel.model.model.rr.wts))
@test dof(aov) == (1, 1)
@test isapprox(teststat(aov)[2:end], teststat(aovf)[2:end])
end
Expand Down

0 comments on commit d524c38

Please sign in to comment.