From 545bf1a44c9582929dfe9fa3856e527690ad9e69 Mon Sep 17 00:00:00 2001 From: felicio93 Date: Thu, 23 May 2024 12:36:33 -0400 Subject: [PATCH] added cleanup_folded_bound_el func, test_v5, data, and ignore pylint E0606 --- tests/api/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/utils.py b/tests/api/utils.py index d9e376c..c190aeb 100644 --- a/tests/api/utils.py +++ b/tests/api/utils.py @@ -129,7 +129,7 @@ def test_cleanup_folded_bound_el(self): cleaned_mesh = utils.cleanup_folded_bound_el(folded_bound_el_mesh) cleaned_mesh = Mesh(cleaned_mesh) - self.assertEqual(len(cleaned_mesh.elements()), 1130302) + self.assertEqual(len(cleaned_mesh.elements()), 1130295) class RemovePolygonHoles(unittest.TestCase):