From 728d822b19fa3d20b131250c036ecd30d4592d75 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Tue, 12 Nov 2019 13:09:58 +0000 Subject: [PATCH] TEST: Error in test --- tests/test_mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mesh.py b/tests/test_mesh.py index c5841df9d..cfd35f81c 100644 --- a/tests/test_mesh.py +++ b/tests/test_mesh.py @@ -245,7 +245,7 @@ def test_needsFixing(): verts = np.array(CUBE_VERTICES) tris_cw = np.array(CUBE_TRIANGLES_CW) tris_ccw = np.array(CUBE_TRIANGLES_CCW) - fnormals = np.array(CUBE_CCW_VERTEX_NORMALS) + fnormals = np.array(CUBE_CCW_FACE_NORMALS) blo = verts.min(axis=0) bhi = verts.max(axis=0) mesh = fslmesh.Mesh(tris_cw, vertices=verts, fixWinding=True) -- GitLab