We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f378bd commit fa5eb37Copy full SHA for fa5eb37
test/reactionsystem_core/reactionsystem_structure.jl
@@ -748,8 +748,8 @@ end
748
# Tests construction of empty reaction networks.
749
let
750
empty_network = @reaction_network
751
- @test length(equations(empty_network)) == 0
752
- @test nameof(independent_variable(empty_network)) == :t
753
- @test length(unknowns(empty_network)) == 0
754
- @test length(parameters(empty_network)) == 0
+ @test length(get_eqs(empty_network)) == 0
+ @test nameof(get_iv(empty_network)) == :t
+ @test length(get_unknowns(empty_network)) == 0
+ @test length(get_ps(empty_network)) == 0
755
end
0 commit comments