From 9b2e2b5d49b15dd73a73f3b4aadbc081bc91921b Mon Sep 17 00:00:00 2001 From: Etienne Bacher <52219252+etiennebacher@users.noreply.github.com> Date: Wed, 14 Jun 2023 17:00:26 +0200 Subject: [PATCH] tests: remove a `skip()` condition that is never reached because `datawizard` depends on R >= 3.6 --- tests/testthat/test-standardize_models.R | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/testthat/test-standardize_models.R b/tests/testthat/test-standardize_models.R index e569ffebf..4e1706ce5 100644 --- a/tests/testthat/test-standardize_models.R +++ b/tests/testthat/test-standardize_models.R @@ -204,8 +204,6 @@ test_that("variables evaluated in the environment", { w <- capture_warnings(standardize(m)) expect_true(any(grepl("mtcars$mpg", w, fixed = TRUE))) - - skip_if(packageVersion("base") == package_version(3.4)) ## Note: # No idea why this is suddenly not giving a warning on older R versions. m <- lm(mtcars$mpg ~ mtcars$cyl + mtcars$am, data = mtcars)