diff --git a/tests/api/utils.py b/tests/api/utils.py index 2279953..3693ca0 100644 --- a/tests/api/utils.py +++ b/tests/api/utils.py @@ -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, @@ -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,