From 31f92f7870912aa5f49db17db63329cde206aa67 Mon Sep 17 00:00:00 2001 From: MaNyh <nyhuis@tfd.uni-hannover.de> Date: Mon, 11 Apr 2022 10:39:16 +0200 Subject: [PATCH] fix imports and cleanup --- tests/test_ntrfc_pyvistautils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_ntrfc_pyvistautils.py b/tests/test_ntrfc_pyvistautils.py index 18159f2e..203665f9 100644 --- a/tests/test_ntrfc_pyvistautils.py +++ b/tests/test_ntrfc_pyvistautils.py @@ -4,7 +4,7 @@ def test_massflow_plane(): import numpy as np import pyvista as pv - from ntrfc.pyvista_utils.surface import massflow_plane + from ntrfc.utils.pyvista_utils.surface import massflow_plane plane = pv.Plane() numcells = plane.number_of_cells @@ -19,7 +19,7 @@ def test_massflow_plane(): def test_areaave_plane(): import numpy as np import pyvista as pv - from ntrfc.pyvista_utils.surface import areaave_plane + from ntrfc.utils.pyvista_utils.surface import areaave_plane plane = pv.Plane() plane["U"] = np.ones(plane.number_of_cells) -- GitLab