Skip to content

Commit

Permalink
fixed wrong object usage in mulliken extraction
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Papior <[email protected]>
  • Loading branch information
zerothi committed Nov 13, 2024
1 parent 7ee53e0 commit ea44b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sisl/io/siesta/tests/test_tsde.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_si_pdos_kgrid_tsde_edm_dtypes(sisl_files, sisl_tmp, matrix):
M.write(fnc)
# The overlap should be here...
M1 = M.read(fnc)
assert np.allclose(mull, M.mulliken(), atol=1e-5)
assert np.allclose(mull, M1.mulliken(), atol=1e-5)


@pytest.mark.filterwarnings("ignore", message="*wrong sparse pattern")
Expand Down

0 comments on commit ea44b2c

Please sign in to comment.