Skip to content

Commit

Permalink
test/export: Fix description
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Feb 26, 2024
1 parent 5270fb4 commit 1b1ae85
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def test_export_fmu_field(fmuType):

summary = fmpy.dump(path_fmu)
print(summary)
start_values = {"x0": 4.0, "x1": 5.0}
var1, var2 = f.getInputDescription()
start_values = {var1: 4.0, var2: 5.0}
result = fmpy.simulate_fmu(path_fmu, start_values=start_values)
print(result)

Expand Down

0 comments on commit 1b1ae85

Please sign in to comment.