Skip to content

Commit 90ec972

Browse files
shashiYingboMa
andcommitted
correct fix
Co-authored-by: "Yingbo Ma" <[email protected]>
1 parent 5642722 commit 90ec972

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/odesystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,9 +480,9 @@ using Symbolics: unwrap, wrap
480480
function foo(a::Num, ms::AbstractVector)
481481
a = unwrap(a)
482482
ms = map(unwrap, ms)
483-
wrap(term(foo, a, MakeArray(ms, SArray)))
483+
wrap(term(foo, a, term(SVector, ms...)))
484484
end
485-
@test_skip foo(a, ms::AbstractVector) = a + sum(ms)
485+
foo(a, ms::AbstractVector) = a + sum(ms)
486486
@variables t x(t) ms[1:3](t)
487487
D = Differential(t)
488488
ms = collect(ms)

0 commit comments

Comments
 (0)