diff options
Diffstat (limited to 'tests/testthat/test_nafta.R')
-rw-r--r-- | tests/testthat/test_nafta.R | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/testthat/test_nafta.R b/tests/testthat/test_nafta.R index 80b6adba..8eb052c5 100644 --- a/tests/testthat/test_nafta.R +++ b/tests/testthat/test_nafta.R @@ -21,10 +21,7 @@ test_that("Test data from Appendix B are correctly evaluated", { expect_known_output(print(res), "NAFTA_SOP_Appendix_B.txt") plot_nafta <- function() plot(res) - if(requireNamespace("vdiffr", quietly = TRUE)) { - skip_if(getRversion() >= "4.1.0") - vdiffr::expect_doppelganger("NAFTA SOP Appendix B", plot_nafta) - } + vdiffr::expect_doppelganger("NAFTA SOP Appendix B", plot_nafta) }) test_that("Test data from Appendix D are correctly evaluated", { @@ -49,8 +46,5 @@ test_that("Test data from Appendix D are correctly evaluated", { expect_known_output(print(res), "NAFTA_SOP_Appendix_D.txt") plot_nafta <- function() plot(res) - if(requireNamespace("vdiffr", quietly = TRUE)) { - skip_if(getRversion() >= "4.1.0") - vdiffr::expect_doppelganger("Plot NAFTA analysis", plot_nafta) - } + vdiffr::expect_doppelganger("Plot NAFTA analysis", plot_nafta) }) |