Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testfix for DelayedSubsetBlock parametrization.
Browse files Browse the repository at this point in the history
LTLA committed May 21, 2024
1 parent 8fc5231 commit 732f2af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/ChooseClassicMarkers.cpp
Original file line number Diff line number Diff line change
@@ -151,7 +151,7 @@ TEST_P(ChooseClassicMarkersTest, BlockedMissing) {

// Creating the two references. We remove label 0 (i.e., the first column) from mat2 to
// match the groups available in mat1; we also just compute markers from mat2 alone.
auto sub = tatami::make_DelayedSubsetBlock<1>(mat2, 1, static_cast<int>(nlabels));
auto sub = tatami::make_DelayedSubsetBlock(mat2, 1, static_cast<int>(nlabels) - 1, false);
auto ref_comb = mrk.run(std::vector<const tatami::Matrix<double, int>*>{ mat1.get(), sub.get() },
std::vector<const int*>{ groupings1.data(), groupings2.data() + 1 });

0 comments on commit 732f2af

Please sign in to comment.