Skip to content

Commit

Permalink
remove lint
Browse files Browse the repository at this point in the history
  • Loading branch information
radbasa committed Jan 12, 2024
1 parent 06be5a3 commit 370b84f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/testthat/test-linter_box_trailing_commas_linter.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ test_that("box_trailing_commas_linter blocks no trailing commas in package impor
lintr::expect_lint(bad_package_commas_inline, list(message = paren_lint_msg), linter)
})

test_that("box_trailing_commas_linter check_functions = TRUE blocks no trailing commas
in package function imports", {
test_that("box_trailing_commas_linter check_functions = TRUE blocks no trailing commas", {
linter <- box_trailing_commas_linter(check_functions = TRUE)

lintr::expect_lint(bad_package_function_commas, list(message = bracket_lint_msg), linter)
Expand All @@ -87,8 +86,7 @@ test_that("box_trailing_comma_linter blocks no trailing commas in module imports
lintr::expect_lint(bad_module_commas_inline, list(message = paren_lint_msg), linter)
})

test_that("box_trailing_commas_linter check_functions = TRUE blocks no trailing commas
in module function imports", {
test_that("box_trailing_commas_linter check_functions = TRUE blocks no trailing commas", {
linter <- box_trailing_commas_linter(check_functions = TRUE)

lintr::expect_lint(bad_module_function_commas, list(message = bracket_lint_msg), linter)
Expand Down

0 comments on commit 370b84f

Please sign in to comment.