diff --git a/R/conjunct_test_linter.R b/R/conjunct_test_linter.R index af2028fb6..26489206c 100644 --- a/R/conjunct_test_linter.R +++ b/R/conjunct_test_linter.R @@ -34,10 +34,7 @@ #' ) #' #' lint( -#' text = "dplyr::filter( -#' mtcars, -#' mpg > 20 & vs == 0 -#' )", +#' text = "dplyr::filter(mtcars, mpg > 20 & vs == 0)", #' linters = conjunct_test_linter() #' ) #' @@ -53,10 +50,7 @@ #' ) #' #' lint( -#' text = "dplyr::filter( -#' mtcars, -#' mpg > 20 & vs == 0 -#' )", +#' text = "dplyr::filter(mtcars, mpg > 20 & vs == 0)", #' linters = conjunct_test_linter(allow_filter = TRUE) #' ) #'