Skip to content

Commit

Permalink
fix readSCP leftover
Browse files Browse the repository at this point in the history
  • Loading branch information
lgatto committed Mar 8, 2024
1 parent 09fdcb5 commit 3fc616f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/testthat/test_readFeatures.R
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ test_that("readQFeatures: correct use", {
c("File1" = 10L))
#####################################
## Test remove empty columns
qf <- readSCP(x, colann,
batchCol = "file",
channelCol = "Channel",
removeEmptyCols = TRUE)
qf <- readQFeatures(x, colann,
batchCol = "file",
channelCol = "Channel",
removeEmptyCols = TRUE)
expect_identical(sort(names(qf)), sort(unique(x$file)))
expect_true(all(dims(qf)[2, ] == rep(10, 3)))
expect_true(sum(dims(qf)[1, ]) == nrow(x))
Expand Down

0 comments on commit 3fc616f

Please sign in to comment.