diff --git a/test/test_firedrake_interop.py b/test/test_firedrake_interop.py index e98e3c6f57b41a430e9139714d6ea0d19b62613b..505daf39e8e57ec170ab4cc225405d7663e558ea 100644 --- a/test/test_firedrake_interop.py +++ b/test/test_firedrake_interop.py @@ -86,8 +86,8 @@ def fdrake_mesh(request): return UnitSquareMesh(10, 10) if mesh_name == "FiredrakeUnitSquareMesh-order2": m = UnitSquareMesh(10, 10) - V = VectorFunctionSpace(m, 'CG', 2) - coords = Function(V).interpolate(SpatialCoordinate(m)) + fspace = VectorFunctionSpace(m, 'CG', 2) + coords = Function(fspace).interpolate(SpatialCoordinate(m)) from firedrake.mesh import Mesh return Mesh(coords) if mesh_name == "FiredrakeUnitCubeMesh":