Skip to content

Commit

Permalink
java / c# tests updated
Browse files Browse the repository at this point in the history
since we have a new function definition the old test failed
  • Loading branch information
fbergmann committed Mar 14, 2023
1 parent 6a7a6da commit a2c5e4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bindings/csharp/test/sbml/TestSBMLTransforms.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void test_SBMLTransforms_replaceFD()
{
}
m = d.getModel();
assertTrue( m.getNumFunctionDefinitions() == 2 );
assertTrue( m.getNumFunctionDefinitions() == 3 );
d.expandFunctionDefinitions();
assertTrue( d.getModel().getNumFunctionDefinitions() == 0 );
ast = d.getModel().getReaction(0).getKineticLaw().getMath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public void test_SBMLTransforms_replaceFD()
{
}
m = d.getModel();
assertTrue( m.getNumFunctionDefinitions() == 2 );
assertTrue( m.getNumFunctionDefinitions() == 3 );
d.expandFunctionDefinitions();
assertTrue( d.getModel().getNumFunctionDefinitions() == 0 );
ast = d.getModel().getReaction(0).getKineticLaw().getMath();
Expand Down

0 comments on commit a2c5e4b

Please sign in to comment.