Skip to content

Commit

Permalink
new quad function + tests_19
Browse files Browse the repository at this point in the history
  • Loading branch information
felicio93 committed Jun 28, 2024
1 parent cbab853 commit 6a05120
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_calc_el_angles(self):
np.all(utils.calc_el_angles(out_msht)[-1][0][-1] == np.array([90., 90., 90., 90.]))
)

def order_mesh(self):
def test_order_mesh(self):
out_msht = utils.msht_from_numpy(
coordinates=self.in_verts,
triangles=self.in_tria,
Expand All @@ -99,7 +99,7 @@ def order_mesh(self):
np.all(utils.order_mesh(out_msht).quad4['index'][0] == np.array([0, 4, 8, 7]))
)

def quads_from_tri(self):
def test_quads_from_tri(self):
out_msht = utils.msht_from_numpy(
coordinates=self.in_verts,
triangles=self.in_tria,
Expand Down

0 comments on commit 6a05120

Please sign in to comment.