Skip to content

Commit befbd16

Browse files
committed
spell Norwegian correctly
1 parent 25777b7 commit befbd16

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

test/dsl/dsl_basic_model_construction.jl

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ let
444444
@test any(isequal(I), unknowns(rn))
445445
end
446446

447-
# Test that Ø (Danish/Noerweigan letter), ∅ (empty set), and 0 (zero) are equivalent.
447+
# Test that Ø (Danish/Norwegian letter), ∅ (empty set), and 0 (zero) are equivalent.
448448
let
449449
rn1 = @reaction_network rn begin
450450
p, Ø --> X
@@ -462,7 +462,15 @@ let
462462
p, Ø --> X
463463
d, X -->
464464
end
465-
@test rn1 == rn2 == rn3 == rn4
465+
rn5 = @reaction_network rn begin
466+
p, Ø --> X
467+
d, X --> 0
468+
end
469+
rn6 = @reaction_network rn begin
470+
p, ∅ --> X
471+
d, X --> 0
472+
end
473+
@test rn1 == rn2 == rn3 == rn4 == rn5 == rn6
466474
end
467475

468476
# Tests backwards and bi-directional arrows.

0 commit comments

Comments
 (0)