diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-04-20 08:25:27 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-04-20 08:25:27 +0200 |
commit | 5526bf5ba6b003c6dae842f7f03f33c1648c9551 (patch) | |
tree | a2c655b4d81856219f63aa8d8a94991493238791 /tests | |
parent | fe0601aa4c729466e9c4d3219aa6cf1bf0f96955 (diff) |
Increase test tolerance for residuals
This was done to address the test failure on
r-devel-linux-x86_64-debian-gcc on CRAN
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testthat/FOCUS_2006_D.csf | 2 | ||||
-rw-r--r-- | tests/testthat/test_residuals.R | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/testthat/FOCUS_2006_D.csf b/tests/testthat/FOCUS_2006_D.csf index 818c055a..81a4ed74 100644 --- a/tests/testthat/FOCUS_2006_D.csf +++ b/tests/testthat/FOCUS_2006_D.csf @@ -5,7 +5,7 @@ Description: MeasurementUnits: % AR TimeUnits: days Comments: Created using mkin::CAKE_export -Date: 2020-04-18 +Date: 2020-04-20 Optimiser: IRLS [Data] diff --git a/tests/testthat/test_residuals.R b/tests/testthat/test_residuals.R index f70ad224..d9974d86 100644 --- a/tests/testthat/test_residuals.R +++ b/tests/testthat/test_residuals.R @@ -11,10 +11,10 @@ test_that("Residuals are correctly returned", { expect_equivalent( residuals(fit_obs_1, standardized = TRUE)[1:3], c(-0.21771169, -0.33576060, 2.02836138), - tolerance = 1e-6) + tolerance = 1e-5) expect_equivalent( residuals(fit_tc_1, standardized = TRUE)[1:3], c(-0.2474499, -0.3794267, 2.2749216), - tolerance = 1e-6) + tolerance = 1e-5) }) |