From 8e659eb3c2351401f010da5cd401487831058fcc Mon Sep 17 00:00:00 2001 From: Tangi Migot Date: Sun, 23 Nov 2025 15:15:43 -0500 Subject: [PATCH] Update limit for HessSparse allocation test for Julia 1.12 --- test/test-allocation-test-utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-allocation-test-utils.jl b/test/test-allocation-test-utils.jl index 2c290cb1..b733c178 100644 --- a/test/test-allocation-test-utils.jl +++ b/test/test-allocation-test-utils.jl @@ -48,7 +48,7 @@ end @testset "Test in-place hessian allocations" begin @testset "$Workspace" for (Workspace, limit) in - ((HessDense, 1952), (HessSparse, 944), (HessSparseCOO, 0), (HessOp, 0)) + ((HessDense, 1952), (HessSparse, 1300), (HessSparseCOO, 0), (HessOp, 0)) who = Workspace(nlp, n) alloc_hessian(who, nlp, x0) al = @allocated alloc_hessian(who, nlp, x0)