Skip to content

Commit

Permalink
Fix gen_results tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bschilder committed Nov 4, 2023
1 parent b0bcb25 commit 42516ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-gen_results.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ test_that("gen_results works", {
reps = 10)
testthat::expect_true(methods::is(all_results,"data.table"))
testthat::expect_gte(sum(list_names %in% unique(all_results$hpo_id)),
length(list_names)-1)
testthat::expect_gte(nrow(all_results[q<=0.05,]),10)
length(list_names)-2)
testthat::expect_gte(nrow(all_results[q<=0.05,]),8)
})

0 comments on commit 42516ef

Please sign in to comment.