diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-05-12 09:08:59 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-05-12 09:08:59 +0200 |
commit | b88c0140885808ae7443179fe8137dea3b93994f (patch) | |
tree | 53eb0a8ccd86b4ac0d57dc7dbe2f2ecb1c2aed76 /tests | |
parent | 9ac853c7ceece333099021974025d07e75be2b33 (diff) |
Address solaris platform dependence revealed on CRAN
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testthat/test_analytical.R | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testthat/test_analytical.R b/tests/testthat/test_analytical.R index 6b1b8bb1..a34fa2cd 100644 --- a/tests/testthat/test_analytical.R +++ b/tests/testthat/test_analytical.R @@ -40,7 +40,8 @@ test_that("The analytical solutions for SFO-SFO are correct", { solution_type = "deSolve", quiet = TRUE) expect_equal( parms(f_sfo_sfo.ff), - parms(f_sfo_sfo.ff_desolve) + parms(f_sfo_sfo.ff_desolve), + tolerance = 5e-6 ) }) |