Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Feb 4, 2024
1 parent 941da88 commit 56eaf72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-check_outliers.R
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ test_that("mcd which", {
31L
)
out <- check_outliers(mtcars, method = "mcd")
expect_identical(sum(out), 8)
expect_identical(sum(out), 8L)
out <- check_outliers(mtcars, method = "mcd", percentage_central = 0.5)
expect_identical(sum(out), 15)
expect_identical(sum(out), 15L)
})

## FIXME: Fails on CRAN/windows
Expand Down

0 comments on commit 56eaf72

Please sign in to comment.