Skip to content

Commit

Permalink
Fix test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ArzhelaR committed Jan 9, 2025
1 parent a1ab918 commit 9b1d6ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_modules/test_mesh_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit 9b1d6ea

Please sign in to comment.