File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/OrdinaryDiffEqFunctionMap/test Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ using SciMLBase
1212 # Test solve without explicit algorithm
1313 sol = solve (prob_scalar)
1414 @test typeof (sol. alg). name. name == :FunctionMap
15- @test sol. alg == FunctionMap (scale_by_time = false )
15+ @test sol. alg == FunctionMap ()
1616 @test length (sol. u) > 1
1717
1818 # Test init without explicit algorithm
1919 integrator = init (prob_scalar)
2020 @test typeof (integrator. alg). name. name == :FunctionMap
21- @test integrator. alg == FunctionMap (scale_by_time = false )
21+ @test integrator. alg == FunctionMap ()
2222 end
2323
2424 # Test array DiscreteProblem
@@ -32,13 +32,13 @@ using SciMLBase
3232 # Test solve without explicit algorithm
3333 sol = solve (prob_array)
3434 @test typeof (sol. alg). name. name == :FunctionMap
35- @test sol. alg == FunctionMap (scale_by_time = false )
35+ @test sol. alg == FunctionMap ()
3636 @test length (sol. u) > 1
3737
3838 # Test init without explicit algorithm
3939 integrator = init (prob_array)
4040 @test typeof (integrator. alg). name. name == :FunctionMap
41- @test integrator. alg == FunctionMap (scale_by_time = false )
41+ @test integrator. alg == FunctionMap ()
4242 end
4343
4444 # Test that explicit algorithm specification still works
You can’t perform that action at this time.
0 commit comments