Skip to content

Commit

Permalink
correct test
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Sep 15, 2023
1 parent f0f3088 commit 4896020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_ufl_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_finite_element(inputs):
def test_vector_element(inputs):
e = basix.ufl.element(*inputs, rank=1)
table = e.tabulate(0, [[0, 0]])
assert table.shape == (1, 1, e.dim)
assert table.shape == (1, 1, e.value_size, e.dim)


@pytest.mark.parametrize("inputs", [
Expand Down

0 comments on commit 4896020

Please sign in to comment.