Skip to content

Commit 18692a4

Browse files
committed
Fixed max line length.
1 parent 7f79b98 commit 18692a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/mesh/creator/special/test/DiamondCreatorTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,8 @@ public void eachTriangularFaceContainsPavillionVertexIndex() {
262262
FaceSelection selection = new FaceSelection(mesh);
263263
selection.selectTriangles();
264264
for (Face3D face : selection.getFaces()) {
265-
MeshTestUtil.assertFaceContainsVertexIndex(face, pavillionVertexIndex);
265+
MeshTestUtil.assertFaceContainsVertexIndex(face,
266+
pavillionVertexIndex);
266267
}
267268
}
268269

0 commit comments

Comments
 (0)