Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward committed Nov 12, 2024
1 parent ef5aa96 commit d5facf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/macro/test_macro_multigrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ def functional(victim, dual):
assert numpy.allclose(fine_functional, coarse_functional)


def test_macro_grid_transfer(hierarchy, space, degrees, variant, transfer_type, petsc_raises):
def test_macro_grid_transfer(hierarchy, space, degrees, variant, transfer_type):
if not hierarchy.nested and transfer_type == "injection":
pytest.skip("Not implemented")
if transfer_type == "injection":
if space in {"DG", "DQ"} and complex_mode:
with petsc_raises(NotImplementedError):
with pytest.raises(NotImplementedError):
run_injection(hierarchy, space, degrees, variant)
else:
run_injection(hierarchy, space, degrees, variant)
Expand Down

0 comments on commit d5facf4

Please sign in to comment.