Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn committed Jun 2, 2022
1 parent 453ff28 commit c50fc34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_sme_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ def test_empty_structure():
assert empty.atomic is not None

assert empty.monh == 0
assert np.isnan(empty["abund Fe"])
assert empty.abund["H"] == 0
assert np.isnan(empty.abund()["Mg"])
assert not np.isnan(empty["abund Fe"])
assert empty.abund["H"] == 12
assert not np.isnan(empty.abund()["Mg"])

assert empty.system_info is not None
assert empty.system_info.arch == ""
Expand Down

0 comments on commit c50fc34

Please sign in to comment.