From c375ffeff06c386d84ad7cf2c951d935eca7d6d1 Mon Sep 17 00:00:00 2001 From: Wojciekowski Date: Thu, 12 Oct 2023 17:22:34 +0200 Subject: [PATCH] - fixed changes in plot test file due to re-naming --- tests/testthat/test-plot.R | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testthat/test-plot.R b/tests/testthat/test-plot.R index a6f37c0..d2ab7a5 100644 --- a/tests/testthat/test-plot.R +++ b/tests/testthat/test-plot.R @@ -153,8 +153,8 @@ test_that("Test plot_modelFits with different model_fits input", { plot6 <- plot_modelFits(fit) expect_is(plot6, "ggplot") - # Test with CrI = TRUE and more models - plot7 <- plot_modelFits(fit, CrI = TRUE) + # Test with cr_intv = TRUE and more models + plot7 <- plot_modelFits(fit, cr_intv = TRUE) expect_is(plot7, "ggplot") # Test with gAIC = FALSE and more models @@ -166,6 +166,6 @@ test_that("Test plot_modelFits with different model_fits input", { expect_is(plot9, "ggplot") # Test with all non-default parameters and more models - plot10 <- plot_modelFits(fit, CrI = TRUE, gAIC = FALSE, avg_fit = FALSE) + plot10 <- plot_modelFits(fit, cr_intv = TRUE, gAIC = FALSE, avg_fit = FALSE) expect_is(plot10, "ggplot") }) \ No newline at end of file