Skip to content

Commit a49bf12

Browse files
authored
Fix syntax error in mesh tangling tests (#172)
1 parent 04631b2 commit a49bf12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_tangling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_2_tangled_elements_3d(self):
7373
def test_6_tangled_elements_3d(self):
7474
checker = MeshTanglingChecker(UnitCubeMesh(3, 3, 3), raise_error=False)
7575
self.assertEqual(checker.check(), 0)
76-
checker.mesh.coordinates.dat.data[33][0] += (0.4,) # Vertex 33: (1/3, 1/3, 1/3)
76+
checker.mesh.coordinates.dat.data[33][0] += 0.4 # Vertex 33: (1/3, 1/3, 1/3)
7777
self.assertEqual(checker.check(), 6)
7878

7979
def test_flip_3d(self):

0 commit comments

Comments
 (0)