Skip to content

Commit

Permalink
Remove strict keyword from zip
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-graham committed Oct 5, 2024
1 parent 1baca82 commit 4650685
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_autodiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def test_vector_function_diff_ops(
for (function_name, expected_value_function), test_value in zip(
function_and_derivatives.items(),
reversed(derivatives_and_values),
strict=False,
False,
):
if function_name.startswith("mhp"):
m = rng.standard_normal((dim_c, dim_q))
Expand Down Expand Up @@ -292,7 +292,7 @@ def test_scalar_function_diff_ops(
for (function_name, expected_value_function), test_value in zip(
function_and_derivatives.items(),
reversed(derivatives_and_values),
strict=False,
False,
):
if function_name.startswith("mtp"):
m = rng.standard_normal((dim_q, dim_q))
Expand Down

0 comments on commit 4650685

Please sign in to comment.