Skip to content

Commit d3be343

Browse files
committed
Test plots removed or commented
1 parent b883f8d commit d3be343

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

test_modules/test_actions.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import unittest
22
import mesh_model.mesh_struct.mesh as mesh
33
from mesh_model.mesh_struct.mesh_elements import Dart, Node
4-
from plots.mesh_plotter import plot_mesh
54

65
from actions.triangular_actions import split_edge, flip_edge, collapse_edge
76

@@ -69,7 +68,6 @@ def test_collapse(self):
6968
collapse_edge(cmap, n00, n5)
7069
d1_to_test = Dart(cmap, 7)
7170
d2_to_test = Dart(cmap, 0)
72-
#plot_mesh(cmap)
7371
self.assertEqual(collapse_edge(cmap, n00, n5), False)
7472

7573
def test_split_collapse_split(self):
@@ -98,8 +96,6 @@ def test_split_collapse_split(self):
9896
n8 = Node(cmap, 8)
9997
collapse_edge(cmap, n7, n8)
10098
collapse_edge(cmap, n5, n7)
101-
#plot_mesh(cmap)
102-
10399

104100

105101

test_modules/test_random_trimesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from mesh_model.random_trimesh import regular_mesh, random_mesh, random_flip_mesh, mesh_shuffle
33
from mesh_model.mesh_struct.mesh import Mesh
44

5-
from plots.mesh_plotter import plot_mesh
5+
#from plots.mesh_plotter import plot_mesh
66

77

88
class TestRandomTrimesh(unittest.TestCase):

0 commit comments

Comments
 (0)