Skip to content

Commit

Permalink
fix bad check in test_user_incar_settings
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Nov 14, 2024
1 parent 0c56c2b commit 30031ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/vasp/test_sets.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_user_incar_settings():
"GGA": "PE",
"IBRION": 1,
"ISIF": 1,
"ISPIN": False, # wrong type, should be integer (only 1 or 2)
"ISPIN": -10, # wrong value, should be 1 or 2
"LASPH": False,
"ISMEAR": -2,
"LCHARG": 50, # wrong type, should be bool.
Expand Down

0 comments on commit 30031ae

Please sign in to comment.