Skip to content

Commit

Permalink
Update add_qc_metrics name in test
Browse files Browse the repository at this point in the history
  • Loading branch information
lahuuki committed May 17, 2024
1 parent d73d19e commit 535ceea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
test_that(
"metrics_qc returns modified spe",
"add_qc_metrics returns modified spe",
{
if (!exists("spe")) spe <- fetch_data("spe")

# run metrics spe
spe_qc <- metrics_qc(spe)
spe_qc <- add_qc_metrics(spe)
expect_equal(ncol(spe), ncol(spe_qc)) ## same number of spots
expect_equal(ncol(colData(spe)) + 8, ncol(colData(spe_qc))) ## add 8 QC cols to colData
}
Expand Down

0 comments on commit 535ceea

Please sign in to comment.