Skip to content

Commit

Permalink
fix var
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed Dec 24, 2024
1 parent 11b2fd9 commit c8c9377
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions qcengine/tests/test_procedures.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,11 @@ def test_optimizer_stdout(optimizer, gradprog, gradmodel, converged, input_data,


@pytest.mark.parametrize(
"optimizer,converged",
"optimizer",
[
pytest.param("geometric", "Converged!", marks=using("geometric")),
pytest.param("optking", "Convergence check returned True", marks=using("optking")),
pytest.param("berny", "All criteria matched", marks=using("berny")),
pytest.param("geometric", marks=using("geometric")),
pytest.param("optking", marks=using("optking")),
pytest.param("berny", marks=using("berny")),
],
)
@pytest.mark.parametrize(
Expand Down

0 comments on commit c8c9377

Please sign in to comment.