Skip to content

Commit 73a4883

Browse files
Merge pull request #177 from SciML/ChrisRackauckas-patch-2
Fix master
2 parents 5c507b4 + d1ad60e commit 73a4883

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/systems.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using Catalyst, SBML
33
using Test
44

55
cd(@__DIR__)
6-
sbmlfile = joinpath("test", "data", "reactionsystem_01.xml")
6+
sbmlfile = joinpath("data", "reactionsystem_01.xml")
77
const IV = default_t()
88
@parameters k1, c1
99
@species s1(IV), s2(IV), s1s2(IV)
@@ -100,7 +100,7 @@ trueeqs = Equation[default_time_deriv()(s1) ~ -((k1 * s1 * s2) / c1),
100100
@test isequal(Catalyst.get_eqs(odesys), trueeqs)
101101
@test isequal(Catalyst.get_iv(odesys), IV)
102102
@test isequal(Catalyst.get_unknowns(odesys), [s1, s1s2, s2])
103-
@test issetequal(Catalyst.parameters_toplevel(odesys), [k1, c1])
103+
@test issetequal(ModelingToolkit.parameters_toplevel(odesys), [k1, c1])
104104
u0 = [s1 => 2 * 1.0, s2 => 2 * 1.0, s1s2 => 2 * 1.0]
105105
par = [k1 => 1.0, c1 => 2.0]
106106
testdef = merge(Dict(u0), Dict(par))

0 commit comments

Comments
 (0)