Skip to content

Commit 84f7309

Browse files
test: remove splatting of parameter object
only worked coincidentally
1 parent 5186afd commit 84f7309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/odesystem.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ end
12231223
sys, [x + 1, x + P, x + t], return_inplace = true)[2]
12241224
ps = ModelingToolkit.MTKParameters(sys, [P => 2.0])
12251225
buffer = zeros(3)
1226-
@test_nowarn obsfn(buffer, [1.0], ps..., 3.0)
1226+
@test_nowarn obsfn(buffer, [1.0], ps, 3.0)
12271227
@test buffer [2.0, 3.0, 4.0]
12281228
end
12291229

0 commit comments

Comments
 (0)