From 9b1d6ea180bd4e7960747bd1d69ab004fd15149f Mon Sep 17 00:00:00 2001 From: ropercha Date: Thu, 9 Jan 2025 11:13:57 +0100 Subject: [PATCH] Fix test issue --- test_modules/test_mesh_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_modules/test_mesh_analysis.py b/test_modules/test_mesh_analysis.py index 4aaad88..b11d151 100644 --- a/test_modules/test_mesh_analysis.py +++ b/test_modules/test_mesh_analysis.py @@ -86,7 +86,7 @@ def test_isSplitOk(self): cmap = Mesh(nodes, faces) plot_mesh(cmap) dart_to_test = Dart(cmap, 0) - self.assertEqual(Mesh_analysis.isSplitOk(dart_to_test), (False, False)) + self.assertEqual(Mesh_analysis.isSplitOk(dart_to_test), (False, True)) dart_to_test = Dart(cmap, 2) self.assertEqual(Mesh_analysis.isSplitOk(dart_to_test), (True, True))