Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tests/test_relational_operand.py
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We will not need to fix this since .fetch does not preserve order in this case. This is related to #1242 We have addressed this in DataJoint 2.0 (in review now).

{"id": 0, "key": 4},
{"id": 1, "key": 4},
{"id": 2, "key": 4},
Expand Down
Loading