Skip to content

Commit

Permalink
tests: fix assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Aug 28, 2024
1 parent 9858a6b commit bc2d395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_skeletor.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ def test_readme_example(self):
assert isinstance(skel.mesh_map, np.ndarray)
assert skel.vertices.shape[1] == 3
assert skel.edges.shape[1] == 2
assert skel.mesh_map.shape[0] == len(skel.vertices)
assert skel.mesh_map.shape[0] == len(skel.mesh.vertices)

0 comments on commit bc2d395

Please sign in to comment.