Skip to content

Commit

Permalink
test: fix CSE hack test
Browse files Browse the repository at this point in the history
  • Loading branch information
AayushSabharwal committed Jan 20, 2025
1 parent dc3e2dc commit 2e14e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/structural_transformation/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ end
@mtkbuild sys = ODESystem(
[D(y) ~ foo(x), D(x) ~ sum(y), zeros(2) ~ foo(prod(z))], t)
@test length(equations(sys)) == 5
@test length(observed(sys)) == 2
@test length(observed(sys)) == 4
prob = ODEProblem(
sys, [y => ones(2), z => 2ones(2), x => 3.0], (0.0, 1.0), [foo => _tmp_fn2])
@test_nowarn prob.f(prob.u0, prob.p, 0.0)
Expand Down

0 comments on commit 2e14e0b

Please sign in to comment.