diff --git a/pyproject.toml b/pyproject.toml index a3861d0a..81789f6a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,6 @@ dependencies = [ dev = [ "pytest", "pytest-cov", - "pytest-unordered", "flake8", "mypy", "types-requests", diff --git a/tests/cases/csv_points_source.py b/tests/cases/csv_points_source.py index 90c67cf9..95969213 100644 --- a/tests/cases/csv_points_source.py +++ b/tests/cases/csv_points_source.py @@ -2,7 +2,6 @@ import numpy as np import pytest -from pytest_unordered import unordered import unittest from gunpowder import ( @@ -74,4 +73,4 @@ def test_pipeline3(test_points): result_points = list(request[points_key].nodes) result_locs = [list(point.location) for point in result_points] - assert result_locs == unordered(target_locs) + assert sorted(result_locs) == sorted(target_locs)