Skip to content

Commit e933522

Browse files
authored
correction due to euler angles in result info provider (#1167)
1 parent 82eced7 commit e933522

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_resultinfo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ def test_get_resultinfo_no_model(velocity_acceleration, server_type):
2525
op.connect(4, dataSource)
2626
res = op.get_output(0, dpf.core.types.result_info)
2727
assert res.analysis_type == "static"
28-
assert res.n_results == 14
28+
assert res.n_results == 15
2929
assert "m, kg, N, s, V, A" in res.unit_system
3030
assert res.physics_type == mechanical
3131

3232

3333
def test_get_resultinfo(model):
3434
res = model.metadata.result_info
3535
assert res.analysis_type == "static"
36-
assert res.n_results == 14
36+
assert res.n_results == 15
3737
assert "m, kg, N, s, V, A" in res.unit_system
3838
assert res.physics_type == mechanical
3939
assert "Static analysis" in str(res)

0 commit comments

Comments
 (0)