From ca978f709384af5dbb94c4a028c13e00957e3945 Mon Sep 17 00:00:00 2001 From: benSepanski <ben_sepanski@alumni.baylor.edu> Date: Tue, 14 Jul 2020 13:58:19 -0500 Subject: [PATCH] flake8 fix : V -> fspace --- test/test_firedrake_interop.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_firedrake_interop.py b/test/test_firedrake_interop.py index e98e3c6f..505daf39 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": -- GitLab