From 4e140fb1569cdcd276b4f220ce2220564fb7033c Mon Sep 17 00:00:00 2001 From: MaxenceGollier <134112149+MaxenceGollier@users.noreply.github.com> Date: Thu, 31 Oct 2024 16:34:20 +0000 Subject: [PATCH] Update test/nlp/quasi-newton.jl Co-authored-by: Dominique --- test/nlp/quasi-newton.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/nlp/quasi-newton.jl b/test/nlp/quasi-newton.jl index 862d46a..90ee3f5 100644 --- a/test/nlp/quasi-newton.jl +++ b/test/nlp/quasi-newton.jl @@ -126,7 +126,7 @@ Hop = hess_op!(nlp, x, Hv) @test Hop * v ≈ H(x) * v @test nlp.counters == nlp.model.counters - @test neval_obj(nlp) == neval_obj(nlp.model) + @test neval_obj(nlp) == neval_obj(nlp.model) @test neval_grad(nlp) == neval_grad(nlp.model) @test neval_hess(nlp) == neval_hess(nlp.model) @test neval_hprod(nlp) == neval_hprod(nlp.model)