Skip to content

Commit

Permalink
Add another missing conj
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmaddison committed Jan 9, 2025
1 parent 89f856c commit f244d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/firedrake/regression/test_interp_dual.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_assemble_interp_adjoint_tensor(mesh, V1, f1):
f2 = Function(V1, name="f2").interpolate(
exp(x) * y)

assert np.allclose(assemble(a(f2)), assemble(Function(V1).interpolate(f1 * f2) * dx))
assert np.allclose(assemble(a(f2)), assemble(Function(V1).interpolate(conj(f1 * f2)) * dx))


def test_assemble_interp_operator(V2, f1):
Expand Down

0 comments on commit f244d31

Please sign in to comment.