We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f33b93 commit 50d6112Copy full SHA for 50d6112
tests/util/test_client.py
@@ -114,8 +114,9 @@ def test_get_visit_list(
114
expected_url = f"{server_url}/instruments/{instrument_name}/visits_raw"
115
mock_request.get.assert_called_once_with(expected_url)
116
117
- # Check that expected outputs are correct (order-insensitive)
118
- assert {visit.dict() for visit in visits} == set(example_visits)
+ # Check that expected outputs are correct (order-sensitive)
+ for v, visit in enumerate(visits):
119
+ assert visit.dict() == example_visits[v]
120
121
122
def test_set_default_acquisition_output_normal_operation(tmp_path):
0 commit comments