diff --git a/tests/conftest.py b/tests/conftest.py index 88d55e32f..addfe0dba 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -6,9 +6,9 @@ from typing import Dict, List import certifi -import minio import networkx as nx import pytest +minio = pytest.importorskip("minio") import urllib3 from packaging import version diff --git a/tests/test_relational_operand.py b/tests/test_relational_operand.py index 2dbea672e..dd36483e5 100644 --- a/tests/test_relational_operand.py +++ b/tests/test_relational_operand.py @@ -630,8 +630,8 @@ def test_top_restriction_with_keywords(self, schema_simp_pop): ] assert key.fetch(as_dict=True) == [ {"id": 2, "key": 6}, - {"id": 2, "key": 5}, {"id": 1, "key": 5}, + {"id": 2, "key": 5}, {"id": 0, "key": 4}, {"id": 1, "key": 4}, {"id": 2, "key": 4},