Skip to content

Commit

Permalink
Merge pull request #206 from timcallow/fix_tests
Browse files Browse the repository at this point in the history
Make mixfrac explicit in tests
  • Loading branch information
timcallow authored Oct 10, 2023
2 parents f895b07 + ba34b88 commit 1d3333a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/pressure_log_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def _run_SCF():
output = model.CalcEnergy(
3,
3,
scf_params={"maxscf": 5},
scf_params={"maxscf": 5, "mixfrac": 0.3},
grid_params={"ngrid": 1000},
band_params={"nkpts": 50},
verbosity=1,
Expand Down
2 changes: 1 addition & 1 deletion tests/pressure_sqrt_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _run_SCF():
output = model.CalcEnergy(
6,
8,
scf_params={"maxscf": 5},
scf_params={"maxscf": 5, "mixfrac": 0.3},
grid_params={"ngrid": 1000},
band_params={"nkpts": 50},
verbosity=1,
Expand Down
2 changes: 1 addition & 1 deletion tests/unbound_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def _run():
output = model.CalcEnergy(
3,
3,
scf_params={"maxscf": 3},
scf_params={"maxscf": 3, "mixfrac": 0.3},
grid_params={"ngrid": 1000},
force_bound=[[0, 0, 0]],
)
Expand Down

0 comments on commit 1d3333a

Please sign in to comment.