Skip to content

Commit

Permalink
Set actual value, not 'none'.
Browse files Browse the repository at this point in the history
  • Loading branch information
luciansmith committed Jun 24, 2023
1 parent 0d160c5 commit ed7644f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_core_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def test_exec_sed_task_with_changes(self):
model.changes.append(sedml_data_model.ModelAttributeChange(
target="/sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='{}']".format(variable_id),
target_namespaces=self.NAMESPACES,
new_value=None))
new_value=1.3))
variables.append(sedml_data_model.Variable(
id=variable_id,
target="/sbml:sbml/sbml:model/sbml:listOfSpecies/sbml:species[@id='{}']".format(variable_id),
Expand Down Expand Up @@ -673,3 +673,6 @@ def test_exec_sedml_docs_in_combine_archive_with_docker_image(self):
archive_filename, out_dir, docker_image, environment=env, pull_docker_image=False)

self._assert_combine_archive_outputs(doc, out_dir)

if __name__ == "__main__":
unittest.main()

0 comments on commit ed7644f

Please sign in to comment.