diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2022-11-01 12:39:28 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-11-01 12:39:28 +0100 |
commit | a787e5266628f859fd70454c5419721efa494887 (patch) | |
tree | 06a88bd5f1f7cbd6d94db81399ffe77d92080991 /tests/testthat | |
parent | 38eca0da138332bacb47ce0e3a8cc48f257bd0c8 (diff) |
Fix plotting saem fits with covariates
Diffstat (limited to 'tests/testthat')
-rw-r--r-- | tests/testthat/test_plot.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testthat/test_plot.R b/tests/testthat/test_plot.R index 58a00662..13058c00 100644 --- a/tests/testthat/test_plot.R +++ b/tests/testthat/test_plot.R @@ -44,7 +44,7 @@ test_that("Plotting mkinfit, mmkin and mixed model objects is reproducible", { f_uba_dfop_sfo_saem <- saem(f_uba_mmkin["DFOP-SFO", ], quiet = TRUE, transformations = "saemix") - plot_biphasic_mmkin <- function() plot(f_uba_dfop_sfo_mixed) + plot_biphasic_mmkin <- function() plot(f_uba_dfop_sfo_mixed, pop_curve = TRUE) vdiffr::expect_doppelganger("mixed model fit for mmkin object", plot_biphasic_mmkin) plot_biphasic_saem_s <- function() plot(f_uba_dfop_sfo_saem) |