From 9c839e00310fceea6cf8abee3439daaa4ccb31ed Mon Sep 17 00:00:00 2001 From: ksagiyam Date: Mon, 27 May 2024 14:19:26 +0100 Subject: [PATCH] fix submesh test partitioner simple --- tests/submesh/test_submesh_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/submesh/test_submesh_base.py b/tests/submesh/test_submesh_base.py index 59190c70ab..fc159e9056 100644 --- a/tests/submesh/test_submesh_base.py +++ b/tests/submesh/test_submesh_base.py @@ -234,7 +234,7 @@ def test_submesh_base_entity_maps(): # # rank 0 rank 1 - mesh = RectangleMesh(2, 1, 2., 1., quadrilateral=True, distribution_parameters={"partitioner": ((1, 1), (0, 1))}) + mesh = RectangleMesh(2, 1, 2., 1., quadrilateral=True, distribution_parameters={"partitioner_type": "simple"}) assert mesh.comm.size == 2 rank = mesh.comm.rank x, y = SpatialCoordinate(mesh)