Skip to content

Commit

Permalink
mark test as broken
Browse files Browse the repository at this point in the history
  • Loading branch information
paulflang authored Apr 27, 2023
1 parent 903ec91 commit e390d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/reactions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ m = SBML.Model(species = Dict("s" => s), reactions = Dict("r1" => r))

# Test get_massaction
@test isequal(SBMLToolkit.get_massaction(k1 * s1, [s1], [1]), k1) # Case hOSU=true
@test isequal(SBMLToolkit.get_massaction(k1 * s1 / c1, [s1], [1]), k1 / c1) # Case hOSU=false
@test_broken isequal(SBMLToolkit.get_massaction(k1 * s1 / c1, [s1], [1]), k1 / c1) # Case hOSU=false
@test isequal(SBMLToolkit.get_massaction(k1 + c1, nothing, nothing), k1 + c1) # Case zero order kineticLaw
@test isnan(SBMLToolkit.get_massaction(k1 * s1 * s2 / (c1 + s2), [s1], [1])) # Case Michaelis-Menten kinetics
@test isnan(SBMLToolkit.get_massaction(k1 * s1 * IV, [s1], [1])) # Case kineticLaw with time
Expand Down

0 comments on commit e390d34

Please sign in to comment.