Skip to content

Commit

Permalink
Update params in test
Browse files Browse the repository at this point in the history
  • Loading branch information
keller-mark committed Dec 17, 2024
1 parent 2ce47d6 commit 5838162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_embedding.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ def test_densmap():
assert_raises(AssertionError, assert_array_equal, d1, d4)

# Checking if specifying dens_lambda works, arrays shouldn't be equal
sc.tl.densmap(pbmc, dens_lambda=2.3456)
sc.tl.densmap(pbmc, method_kwds=dict(dens_lambda=2.3456))
d5 = pbmc.obsm["X_densmap"].copy()
assert_raises(AssertionError, assert_array_equal, d1, d5)

0 comments on commit 5838162

Please sign in to comment.