diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-10-31 12:44:52 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-10-31 12:44:52 +0100 |
commit | 70e48e8360875f22970174d409c46cb3f076fa99 (patch) | |
tree | 8ccfeffe486678dabc4c595bb5b0a4c7dfd89349 /tests/testthat/test_tests.R | |
parent | 99947961be1cf0a7eed80426bc3d8cc6daa6d106 (diff) |
Increase tolerance of a test for winbuilderv0.9.49.6
- Update DESCRIPTION for release
Diffstat (limited to 'tests/testthat/test_tests.R')
-rw-r--r-- | tests/testthat/test_tests.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testthat/test_tests.R b/tests/testthat/test_tests.R index 6edb4dfa..5a522f8e 100644 --- a/tests/testthat/test_tests.R +++ b/tests/testthat/test_tests.R @@ -5,7 +5,7 @@ test_that("The likelihood ratio test works", { expect_error(lrtest(f_1_mkin_trans, f_2_mkin), "not been fitted to the same data") res <- lrtest(fit_nw_1, fit_tc_1) - expect_equal(res[["2", "Pr(>Chisq)"]], 1, tolerance = 1e-5) + expect_equal(res[["2", "Pr(>Chisq)"]], 1, tolerance = 1e-4) }) |