Skip to content

Commit

Permalink
Update test with new FiniteElement interface
Browse files Browse the repository at this point in the history
  • Loading branch information
nbouziani committed Nov 1, 2023
1 parent 76bac16 commit b475771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_duals.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ def test_zero_base_form_mult():


def test_base_form_call():
domain_2d = Mesh(VectorElement("Lagrange", triangle, 1))
f_2d = FiniteElement("CG", triangle, 1)
domain_2d = Mesh(FiniteElement("Lagrange", triangle, 1, (2, ), identity_pullback, H1))
f_2d = FiniteElement("Lagrange", triangle, 1, (), identity_pullback, H1)
V = FunctionSpace(domain_2d, f_2d)

# Check duality pairing
Expand Down

0 comments on commit b475771

Please sign in to comment.