diff --git a/R/find_formula.R b/R/find_formula.R index 794db775f..e523c24e1 100644 --- a/R/find_formula.R +++ b/R/find_formula.R @@ -2001,7 +2001,7 @@ find_formula.model_fit <- function(x, verbose = TRUE, ...) { make.names(bad_name), "` instead of `", bad_name, - "`) and re-fit the model." # nolint + "`) and fit the model again." # nolint )) } return(FALSE) diff --git a/tests/testthat/test-backticks.R b/tests/testthat/test-backticks.R index 27f75203e..8cdcca838 100644 --- a/tests/testthat/test-backticks.R +++ b/tests/testthat/test-backticks.R @@ -69,14 +69,14 @@ withr::with_environment( list(conditional = c("Petal.Length", "a m", "Sepal.Length")) ) expect_identical( - find_variables(m), + find_variables(m, verbose = FALSE), list( response = "Sepal Width", conditional = c("Petal.Length", "a m", "Sepal.Length") ) ) expect_identical( - find_terms(m), + find_terms(m) verbose = FALSE), list( response = "Sepal Width", conditional = c("Petal.Length", "a m", "log(Sepal.Length)")