Skip to content

Commit 461b138

Browse files
committed
use tuple isntead of mixed array
1 parent 9814fe1 commit 461b138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/miscellaneous_tests/symbolic_stoichiometry.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ begin
5858
u0_1 = (A => 3.0, B => 2.0, C => 3.0, D => 5.0)
5959
ps_1 = (k => 5.0, α => 2)
6060
u0_2 = [u[2] for u in u0_1]
61-
ps_2 = [p[2] for p in ps_1]
61+
ps_2 = Tuple(p[2] for p in ps_1)
6262
τ = 1.5
6363

6464
# Creates `ReactionSystem` model.

0 commit comments

Comments
 (0)