We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7034c63 commit 6946731Copy full SHA for 6946731
1 file changed
tests/run_tests/driver_mvi_test.py
@@ -155,8 +155,12 @@ def test_magnetic_vector_run(
155
out_group = run_ws.get_entity("Magnetic Vector Inversion")[0]
156
mesh = out_group.get_entity("mesh")[0]
157
assert len(mesh.property_groups) == 5
158
- assert len(mesh.property_groups[0].properties) == 2
159
- assert mesh.property_groups[1].property_group_type == GroupTypeEnum.DIPDIR
+ assert len(mesh.fetch_property_group("Iteration_0").properties) == 2
+ assert len(mesh.fetch_property_group("LP models").properties) == 6
160
+ assert (
161
+ mesh.fetch_property_group("Iteration_1").property_group_type
162
+ == GroupTypeEnum.DIPDIR
163
+ )
164
165
166
def test_magnetic_vector_bounds_run(
0 commit comments