Skip to content

Commit a2a795e

Browse files
committed
Adapt test code to new function argument
1 parent 6cd7ef9 commit a2a795e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/testthat/test-dplyr_methods.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,11 @@ test_that("mutate counts", {
160160
)
161161

162162
se |>
163-
tidySummarizedExperiment:::check_if_assays_are_NOT_overlapped() |>
163+
tidySummarizedExperiment:::check_if_assays_are_NOT_overlapped(dim = "cols") |>
164164
expect_equal(FALSE)
165165

166166
se[,1] |>
167-
tidySummarizedExperiment:::check_if_assays_are_NOT_overlapped() |>
167+
tidySummarizedExperiment:::check_if_assays_are_NOT_overlapped(dim = "cols") |>
168168
expect_equal(TRUE)
169169

170-
})
170+
})

0 commit comments

Comments
 (0)