Skip to content

Commit 2b92db4

Browse files
test: broken test is now fixed
1 parent b07c380 commit 2b92db4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/simulation_and_solving/simulate_ODEs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ let
193193
ps = [:k1 => 2.0f0, :k2 => 3.0f0]
194194
oprob = ODEProblem(rn, u0, 1.0f0, ps)
195195
osol = solve(oprob, Tsit5())
196-
@test_broken eltype(osol[:X1]) == eltype(osol[:X2]) == typeof(oprob[:X1]) == typeof(oprob[:X2]) == Float32 # https://github.com/SciML/ModelingToolkit.jl/issues/3553
196+
@test eltype(osol[:X1]) == eltype(osol[:X2]) == typeof(oprob[:X1]) == typeof(oprob[:X2]) == Float32
197197
@test eltype(osol.t) == typeof(oprob.tspan[1]) == typeof(oprob.tspan[2]) == Float32
198198
end
199199

0 commit comments

Comments
 (0)