Skip to content

Commit

Permalink
Fix test for riscv64 (#114)
Browse files Browse the repository at this point in the history
Fixes #113
  • Loading branch information
mr-c authored Oct 6, 2024
1 parent 1663262 commit a5d1cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-hashing.R
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ test_that("edge cases are handled correctly with combinatorial barcodes", {
out <- hashedDrops(mat[keep,,drop=FALSE], combinations=rbind(4:2), ambient=ambient[keep])
SCALING <- median(mat[keep]/ambient[keep])
PSEUDO <- mean(ambient[keep]) * SCALING
expect_identical(out$LogFC, .compute_expected_lfc(SCALING, PSEUDO))
expect_equal(out$LogFC, .compute_expected_lfc(SCALING, PSEUDO))
}
})

Expand Down

0 comments on commit a5d1cb5

Please sign in to comment.