Skip to content

Commit fa5eb37

Browse files
committed
fix empty network test
1 parent 0f378bd commit fa5eb37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/reactionsystem_core/reactionsystem_structure.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -748,8 +748,8 @@ end
748748
# Tests construction of empty reaction networks.
749749
let
750750
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
751+
@test length(get_eqs(empty_network)) == 0
752+
@test nameof(get_iv(empty_network)) == :t
753+
@test length(get_unknowns(empty_network)) == 0
754+
@test length(get_ps(empty_network)) == 0
755755
end

0 commit comments

Comments
 (0)