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 e1fcfbc commit 6ba9df3Copy full SHA for 6ba9df3
test/reactionsystem_core/reactionsystem.jl
@@ -614,18 +614,14 @@ end
614
615
# Test for forbidden symbols
616
let
617
- # Define the forbidden symbols (mocked for the purpose of the test)
618
- forbidden_symbols_error = Set([:forbidden1, :forbidden2, :forbidden3])
619
- Catalyst.forbidden_symbols_error = forbidden_symbols_error
620
-
621
# Define parameters and species including forbidden symbols
622
- @parameters p1 forbidden1
623
- @species S1 forbidden2(t)
+ @parameters p1 Γ
+ @species S1(t)
624
625
# Define reactions using the species and parameters
626
rxs = [
627
Reaction(p1, [], [S1]),
628
- Reaction(forbidden1, [], [S1]),
+ Reaction(Γ, [], [S1]),
629
]
630
631
# Attempt to create a ReactionSystem and capture the error
0 commit comments