Skip to content

Commit 2e14e0b

Browse files
test: fix CSE hack test
1 parent dc3e2dc commit 2e14e0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/structural_transformation/utils.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ end
9292
@mtkbuild sys = ODESystem(
9393
[D(y) ~ foo(x), D(x) ~ sum(y), zeros(2) ~ foo(prod(z))], t)
9494
@test length(equations(sys)) == 5
95-
@test length(observed(sys)) == 2
95+
@test length(observed(sys)) == 4
9696
prob = ODEProblem(
9797
sys, [y => ones(2), z => 2ones(2), x => 3.0], (0.0, 1.0), [foo => _tmp_fn2])
9898
@test_nowarn prob.f(prob.u0, prob.p, 0.0)

0 commit comments

Comments
 (0)