diff --git a/DESCRIPTION b/DESCRIPTION index 7506064eae..d3d128a004 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -113,6 +113,8 @@ Suggests: ragg, showtext, sass +Remotes: + r-lib/rlang URL: https://shiny.rstudio.com/ BugReports: https://github.com/rstudio/shiny/issues Collate: diff --git a/man/varSelectInput.Rd b/man/varSelectInput.Rd index d65b698798..4323a7320b 100644 --- a/man/varSelectInput.Rd +++ b/man/varSelectInput.Rd @@ -76,10 +76,10 @@ value when it is a single choice input and the empty string is not in the The resulting server \code{input} value will be returned as: \itemize{ \item A symbol if \code{multiple = FALSE}. The \code{input} value should be -used with rlang's \code{\link[rlang:nse-force]{rlang::!!()}}. For example, +used with rlang's \code{\link[rlang:bang-bang]{rlang::!!()}}. For example, \code{ggplot2::aes(!!input$variable)}. \item A list of symbols if \code{multiple = TRUE}. The \code{input} value -should be used with rlang's \code{\link[rlang:nse-force]{rlang::!!!()}} to expand +should be used with rlang's \code{\link[rlang:bang-bang]{rlang::!!!()}} to expand the symbol list as individual arguments. For example, \code{dplyr::select(mtcars, !!!input$variabls)} which is equivalent to \code{dplyr::select(mtcars, !!input$variabls[[1]], !!input$variabls[[2]], ..., !!input$variabls[[length(input$variabls)]])}. diff --git a/tests/testthat/test-devmode.R b/tests/testthat/test-devmode.R index e27187836a..9ea6ce6598 100644 --- a/tests/testthat/test-devmode.R +++ b/tests/testthat/test-devmode.R @@ -24,7 +24,7 @@ test_that("devmode can be turned on while _testing_ is disabled and check messag TESTTHAT = "false" )) # force inform to always generate signal - options(`rlang:::message_always` = TRUE) + options(rlib_message_verbosity = "verbose") expect_equal(getOption("shiny.devmode", "default"), "default") expect_equal(getOption("shiny.devmode.verbose", "default"), "default")