From 45c40f1699141cac438bc00ea13d51ca6a88b4ac Mon Sep 17 00:00:00 2001 From: farhadrclass <31899325+farhadrclass@users.noreply.github.com> Date: Mon, 3 Mar 2025 22:12:59 -0500 Subject: [PATCH] Update test_minres.jl --- test/test_minres.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_minres.jl b/test/test_minres.jl index 53cf56372..f8508f82e 100644 --- a/test/test_minres.jl +++ b/test/test_minres.jl @@ -40,7 +40,7 @@ A, b = zero_rhs(FC=FC) (x, stats) = minres(A, b) @test norm(x) == 0 - @test stats.status == "x is a zero-residual solution" + @test stats.status == "b is a zero-curvature directions" # Shifted system A, b = symmetric_indefinite(FC=FC)