Skip to content

Commit a058ce8

Browse files
committed
run tests on steady state problem integrator
1 parent 3c8a354 commit a058ce8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/upstream/mtk_structure_indexing.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ begin
5252
sint = init(sprob, ImplicitEM(); save_everystep = false)
5353
jint = init(jprob, SSAStepper())
5454
nint = init(nprob, NewtonRaphson(); save_everystep = false)
55-
@test_broken false # ssint = init(ssprob, DynamicSS(Tsit5()); save_everystep = false) # https://github.com/SciML/SciMLBase.jl/issues/660
55+
ssint = init(ssprob, DynamicSS(Tsit5()); save_everystep = false)
5656
integrators = [oint, sint, jint, nint]
5757

5858
# Creates solutions.
@@ -154,8 +154,7 @@ end
154154

155155
# Test integrator indexing.
156156
let
157-
@test_broken false # NOTE: Cannot even create a `ssint` (https://github.com/SciML/SciMLBase.jl/issues/660).
158-
for int in deepcopy([oint, sint, jint, nint])
157+
for int in deepcopy([oint, sint, jint, nint, ssint])
159158
# Get u values.
160159
@test int[X] == int[model.X] == int[:X] == 4
161160
@test int[XY] == int[model.XY] == int[:XY] == 9

0 commit comments

Comments
 (0)