Skip to content

Commit

Permalink
correction due to euler angles in result info provider (#1167)
Browse files Browse the repository at this point in the history
  • Loading branch information
oparreno authored Sep 20, 2023
1 parent 82eced7 commit e933522
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_resultinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ def test_get_resultinfo_no_model(velocity_acceleration, server_type):
op.connect(4, dataSource)
res = op.get_output(0, dpf.core.types.result_info)
assert res.analysis_type == "static"
assert res.n_results == 14
assert res.n_results == 15
assert "m, kg, N, s, V, A" in res.unit_system
assert res.physics_type == mechanical


def test_get_resultinfo(model):
res = model.metadata.result_info
assert res.analysis_type == "static"
assert res.n_results == 14
assert res.n_results == 15
assert "m, kg, N, s, V, A" in res.unit_system
assert res.physics_type == mechanical
assert "Static analysis" in str(res)
Expand Down

0 comments on commit e933522

Please sign in to comment.