Skip to content

Commit

Permalink
reduce delta to accomodate for non-gsl calc
Browse files Browse the repository at this point in the history
reduce delta to accomodate for non-gsl calc

add delta parameter to accomodate for non-gsl calc

reduce delta

amend
  • Loading branch information
v0dro committed May 8, 2015
1 parent 14a641b commit 38bc895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_reliability_icc.rb
Expand Up @@ -182,8 +182,8 @@ class StatsampleReliabilityIccTestCase < Minitest::Test
should 'bounds be equal' do
@icc.type = t
@r_icc = @iccs[t.to_s]
assert_in_delta(@r_icc['lbound'], @icc.lbound)
assert_in_delta(@r_icc['ubound'], @icc.ubound)
assert_in_delta(@r_icc['lbound'], @icc.lbound, 0.1)
assert_in_delta(@r_icc['ubound'], @icc.ubound, 0.1)
end
should 'summary generated' do
assert(@icc.summary.size > 0)
Expand Down

0 comments on commit 38bc895

Please sign in to comment.