Skip to content

Commit

Permalink
fix determine_multiscale_space test
Browse files Browse the repository at this point in the history
  • Loading branch information
katosh committed Nov 29, 2023
1 parent 7adcde6 commit cbf4a11
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/utils_diffusion_maps_from_kernel.py
Expand Up @@ -54,7 +54,5 @@ def test_diffusion_maps_eigen(mock_kernel):

def test_determine_multiscale_space(mock_kernel):
result = diffusion_maps_from_kernel(mock_kernel)
determine_multiscale_space(result)
assert "EigenValues" in result.keys()
assert "EigenValues" in result.keys()
assert "T" in result.keys()
msresult = determine_multiscale_space(result)
assert msresult.shape[0] == result["EigenVectors"].shape[0]

0 comments on commit cbf4a11

Please sign in to comment.