Skip to content

Commit

Permalink
test: fix type of expected
Browse files Browse the repository at this point in the history
fix type of expected in test_get_overlapping_vertices to IndexGroups
  • Loading branch information
Olaf Haag committed Nov 17, 2023
1 parent 8965bd8 commit ab93f12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/readyplayerme/meshops/unit/test_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import pytest

from readyplayerme.meshops import mesh
from readyplayerme.meshops.types import Indices, Mesh, Vertices
from readyplayerme.meshops.types import IndexGroups, Indices, Mesh, Vertices


class TestReadMesh:
Expand Down Expand Up @@ -91,7 +91,7 @@ def test_get_boundary_vertices(mock_mesh: Mesh):
],
)
def test_get_overlapping_vertices(
vertices: Vertices, indices: Indices, precision: float, expected: Indices, request: pytest.FixtureRequest
vertices: Vertices, indices: Indices, precision: float, expected: IndexGroups, request: pytest.FixtureRequest
):
"""Test the get_overlapping_vertices functions returns the expected indices groups."""
# Get vertices from the fixture if one is given.
Expand Down

0 comments on commit ab93f12

Please sign in to comment.