From 1b85d20841b1be8525636f98dcdf9223743e33cb Mon Sep 17 00:00:00 2001 From: Pablo Brubeck Date: Thu, 1 Feb 2024 10:02:07 +0000 Subject: [PATCH] Fix test_nullspace --- tests/regression/test_nullspace.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/regression/test_nullspace.py b/tests/regression/test_nullspace.py index 36d6801ff0..559b9f243e 100644 --- a/tests/regression/test_nullspace.py +++ b/tests/regression/test_nullspace.py @@ -258,8 +258,9 @@ def test_nullspace_mixed_multiple_components(): 'ksp_type': 'fgmres', 'pc_type': 'python', 'pc_python_type': 'firedrake.MassInvPC', - 'Mp_ksp_type': 'cg', - 'Mp_pc_type': 'sor', + 'Mp_pc_type': 'ksp', + 'Mp_ksp_ksp_type': 'cg', + 'Mp_ksp_pc_type': 'sor', 'ksp_rtol': '1e-7', 'ksp_monitor': None, } @@ -362,8 +363,9 @@ def test_near_nullspace_mixed(aux_pc): 'ksp_converged_reason': None, 'pc_type': 'python', 'pc_python_type': 'firedrake.MassInvPC', - 'Mp_ksp_type': 'cg', - 'Mp_pc_type': 'sor', + 'Mp_pc_type': 'ksp', + 'Mp_ksp_ksp_type': 'cg', + 'Mp_ksp_pc_type': 'sor', 'ksp_rtol': '1e-5', 'ksp_monitor': None, }