Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd committed May 24, 2024
1 parent e52125d commit 775d0ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_check_arities.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def test_complex_arities():
with pytest.raises(ArityMismatch):
compute_form_data(inner(conj(v), u) * dx, complex_mode=True)


def test_product_arity():
cell = tetrahedron
D = Mesh(FiniteElement("Lagrange", cell, 1, (3,), identity_pullback, H1))
Expand All @@ -81,6 +82,5 @@ def test_product_arity():
compute_form_data(F, complex_mode=True)

with pytest.raises(ArityMismatch):
L = inner(v,v)*dx
L = inner(v, v) * dx
compute_form_data(L, complex_mode=False)

0 comments on commit 775d0ce

Please sign in to comment.