Skip to content

Commit

Permalink
fix: tibble in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Melkiades committed Nov 18, 2024
1 parent 50b5024 commit 1721ea4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/testthat/test-binding.R
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,10 @@ test_that("count visibility syncing works when cbinding", {
## cause problems with any of the column info checks

test_that("equivalent split funs withs differrent environments dont' block rbinding", {
combodf <- tibble::tribble(
skip_if_not_installed("tibble")
require(tibble, quietly = TRUE)

Check warning on line 218 in tests/testthat/test-binding.R

View workflow job for this annotation

GitHub Actions / SuperLinter 🦸‍♀️ / Lint R code 🧶

file=tests/testthat/test-binding.R,line=218,col=1,[trailing_whitespace_linter] Trailing whitespace is superfluous.
combodf <- tribble(
~valname, ~label, ~levelcombo, ~exargs,
"A_B", "Arms A+B", c("A: Drug X", "B: Placebo"), list(),
"A_C", "Arms A+C", c("A: Drug X", "C: Combination"), list()
Expand Down

0 comments on commit 1721ea4

Please sign in to comment.