From 77a8792aa2a2a4eb6c3ec5b00ff5affebf8be099 Mon Sep 17 00:00:00 2001 From: Yingbo Ma Date: Tue, 12 Sep 2023 15:58:56 -0400 Subject: [PATCH] Format --- test/split_parameters.jl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/split_parameters.jl b/test/split_parameters.jl index 031ed39606..ef8f434dca 100644 --- a/test/split_parameters.jl +++ b/test/split_parameters.jl @@ -50,8 +50,7 @@ prob = ODEProblem(sys, [], (0.0, t_end), [s.src.data => x]) @test prob.p isa Tuple{Vector{Float64}, Vector{Int}, Vector{Vector{Float64}}} sol = solve(prob, ImplicitEuler()); @test sol.retcode == ReturnCode.Success -@test sol[y][end] == x[end] - +@test sol[y][end] == x[end] # ------------------------ Mixed Type Converted to float (default behavior) @@ -78,6 +77,3 @@ prob = ODEProblem(sys, [], tspan, []; tofloat = false) @test prob.p isa Tuple{Vector{Float64}, Vector{Int64}} sol = solve(prob, ImplicitEuler()); @test sol.retcode == ReturnCode.Success - - -