Skip to content

Commit

Permalink
(fix): use correct base-comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
ilan-gold committed Oct 25, 2024
1 parent 57c479c commit defbf37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_backed_sparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def test_backed_ellipsis_indexing(
csr_mem, csr_disk, csc_disk, _ = ondisk_equivalent_adata

assert_equal(csr_mem.X[equivalent_index], csr_disk.X[ellipsis_index])
assert_equal(csr_disk.X[equivalent_index], csc_disk.X[ellipsis_index])
assert_equal(csr_mem.X[equivalent_index], csc_disk.X[ellipsis_index])


def make_randomized_mask(size: int) -> np.ndarray:
Expand Down

0 comments on commit defbf37

Please sign in to comment.