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 50d6112 commit e62559dCopy full SHA for e62559d
tests/util/test_client.py
@@ -11,6 +11,7 @@
11
read_config,
12
set_default_acquisition_output,
13
)
14
+from murfey.util.models import Visit
15
16
test_read_config_params_matrix = (
17
# Environment variable to set | Append to tmp_path
@@ -116,7 +117,7 @@ def test_get_visit_list(
116
117
118
# Check that expected outputs are correct (order-sensitive)
119
for v, visit in enumerate(visits):
- assert visit.dict() == example_visits[v]
120
+ assert visit.dict() == Visit.parse_obj(example_visits[v]).dict()
121
122
123
def test_set_default_acquisition_output_normal_operation(tmp_path):
0 commit comments