Skip to content

Commit 7a5e231

Browse files
Merge pull request #246 from SciML/ChrisRackauckas-patch-1
Fix test to use TrustRegion
2 parents eb05214 + 258ee8a commit 7a5e231

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/basictests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ end
225225
radius_update_scheme in radius_update_schemes
226226

227227
probN = NonlinearProblem(quadratic_f, u0, 2.0)
228-
@test all(solve(probN, NewtonRaphson(; autodiff)).u .≈ sqrt(2.0))
228+
@test all(solve(probN, TrustRegion(; autodiff, radius_update_scheme)).u .≈ sqrt(2.0))
229229
end
230230

231231
# Test that `TrustRegion` passes a test that `NewtonRaphson` fails on.

0 commit comments

Comments
 (0)